Skip to content

chore(deps): bump the dependencies group with 20 updates#63

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/dependencies-cf8abd70ae
Open

chore(deps): bump the dependencies group with 20 updates#63
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/dependencies-cf8abd70ae

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 15, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 20 updates:

Package From To
http-body-util 0.1.3 0.1.4
toml 1.1.2+spec-1.1.0 1.1.3+spec-1.1.0
cc 1.2.66 1.2.67
crossfire 3.1.18 3.1.19
http-body 1.0.1 1.1.0
jiff 0.2.31 0.2.32
jiff-static 0.2.31 0.2.32
mio 1.2.1 1.2.2
regex 1.12.4 1.13.0
regex-automata 0.4.14 0.4.15
rustls 0.23.41 0.23.42
tinyvec 1.11.0 1.12.0
toml_writer 1.1.1+spec-1.1.0 1.1.2+spec-1.1.0
value-bag 1.12.0 1.13.0
value-bag-serde1 1.12.0 1.13.0
value-bag-sval2 1.12.0 1.13.0
winnow 1.0.3 1.0.4
zerocopy 0.8.53 0.8.54
zerocopy-derive 0.8.53 0.8.54
zmij 1.0.21 1.0.23

Updates http-body-util from 0.1.3 to 0.1.4

Release notes

Sourced from http-body-util's releases.

http-body-util-v0.1.4

What's Changed

  • Add Fused body combinator that always returns None once completed.
  • Add BodyExt::into_stream() to convert a body into a Stream.
  • Add Full::into_inner() to get the full Buf.
  • Add InspectFrame and InspectErr combinators.
Commits

Updates toml from 1.1.2+spec-1.1.0 to 1.1.3+spec-1.1.0

Commits

Updates cc from 1.2.66 to 1.2.67

Release notes

Sourced from cc's releases.

cc-v1.2.67

Other

  • Fix clippy warning (#1788)
  • Regenerate target info (#1785)
  • Add support for aarch64-unknown-linux-pauthtest target (#1713)
  • Fix nightly compilation error (#1783)
Changelog

Sourced from cc's changelog.

1.2.67 - 2026-07-11

Other

  • Fix clippy warning (#1788)
  • Regenerate target info (#1785)
  • Add support for aarch64-unknown-linux-pauthtest target (#1713)
  • Fix nightly compilation error (#1783)
Commits

Updates crossfire from 3.1.18 to 3.1.19

Changelog

Sourced from crossfire's changelog.

[3.1.19] - 2026-07-09

Changed

  • Change dep:embed-collections to pointers crate, for a lighter dep tree
Commits

Updates http-body from 1.0.1 to 1.1.0

Commits

Updates jiff from 0.2.31 to 0.2.32

Changelog

Sourced from jiff's changelog.

0.2.32 (2026-07-08)

This release updates Jiff's bundled copy of the [IANA Time Zone Database] to 2026c. See the 2026c release announcement for more details.

Commits

Updates jiff-static from 0.2.31 to 0.2.32

Changelog

Sourced from jiff-static's changelog.

0.2.32 (2026-07-08)

This release updates Jiff's bundled copy of the [IANA Time Zone Database] to 2026c. See the 2026c release announcement for more details.

Commits

Updates mio from 1.2.1 to 1.2.2

Changelog

Sourced from mio's changelog.

1.2.2

Commits
  • 50ee78d Release 1.2.2
  • e7f35de Document Solaris is supported
  • 8e067d2 Poll all fd events returned by port_getn in one zero-timeout poll call
  • f6a559a Remove dead POLLRDHUP handling and avoid registering unsupported priority
  • f0249a8 Add Solaris event ports selector
  • 2e267a5 Support NuttX (#1966)
  • See full diff in compare view

Updates regex from 1.12.4 to 1.13.0

Changelog

Sourced from regex's changelog.

1.13.0 (2026-07-09)

This release includes a new API, a regex! macro, for lazy compilation of a regex from a string literal. If you use regexes a lot, it's likely you've already written one exactly like it. The new macro can be used like this:

use regex::regex;
fn is_match(line: &str) -> bool {
// The regex will be compiled approximately once and reused automatically.
// This avoids the footgun of using Regex::new here, which would
// guarantee that it would be compiled every time this routine is called.
// This would likely make this routine much slower than it needs to be.
regex!(r"bar|baz").is_match(line)
}
let hay = "
path/to/foo:54:Blue Harvest
path/to/bar:90:Something, Something, Something, Dark Side
path/to/baz:3:It's a Trap!
";
let matches = hay.lines().filter(|line| is_match(line)).count();
assert_eq!(matches, 2);

Improvements:

  • #709: Add a new regex! macro for efficient and automatic reuse of a compiled regex.
Commits
  • 926af2e 1.13.0
  • 7d941a9 regex-automata-0.4.15
  • e358341 api: add regex! macro for lazy compilation
  • c420333 automata: disable miri on a couple doc tests
  • b9d2cf7 github: add FUNDING link
  • 0858006 docs: add AI policy for contributors
  • 468fc64 automata: reject dense DFA start states that are match states
  • See full diff in compare view

Updates regex-automata from 0.4.14 to 0.4.15

Commits
  • 7d941a9 regex-automata-0.4.15
  • e358341 api: add regex! macro for lazy compilation
  • c420333 automata: disable miri on a couple doc tests
  • b9d2cf7 github: add FUNDING link
  • 0858006 docs: add AI policy for contributors
  • 468fc64 automata: reject dense DFA start states that are match states
  • 7b96fdc 1.12.4
  • 7b89cf0 deps: update to regex-syntax 0.8.11
  • 1401679 regex-syntax-0.8.11
  • d709000 changelog: 1.12.4
  • Additional commits viewable in compare view

Updates rustls from 0.23.41 to 0.23.42

Commits
  • 411fb02 Bump version to 0.23.42
  • aff9845 implement rfc 9149 ticket_request extension
  • 8bd3d1b server: add max_tls13_tickets configuration
  • 4cce222 Address new std_instead_of_core in nightly
  • d3ffdc1 Address new std_instead_of_core in nightly
  • 75d1b7a Take semver-compatible dependency updates
  • See full diff in compare view

Updates tinyvec from 1.11.0 to 1.12.0

Changelog

Sourced from tinyvec's changelog.

Changelog

1.12

  • Add schemars support.

1.11.1

  • Fix accidental OOM when deserializing hostile Borsh input.

1.11

  • switched from serde dep to serde_core dep, which should allow more parallelization in builds for downstream users.
  • add as_mut_inner method when the latest_stable_rust feature is enabled
  • add is_full method to check if the size is equal to the capacity
  • add defmt support

1.10

  • Minimum rust version is now 1.55, and the non-const-generic impls are removed. This reduces build times by over a second on average, which is significant enough for a library crate.

1.9

  • Adds a latest_stable_rust cargo feature, which will automatically pull in other cargo features related to the latest Stable version of rust.
  • Adds ArrayVec::try_from_array_len
  • Adds TinyVec::into_vec and TinyVec::into_boxed_slice
  • Adds support for generic-array crate
  • Adds support for the borsh crate

1.8.1

  • e00E updated the rustc features so that they all correctly depend on the lower version feature. pr 199

1.8

1.7

  • Fuuzetsu added the rustc_1_61 cargo feature, which adds the retain_mut method. pr 198

1.6.1

... (truncated)

Commits

Updates toml_writer from 1.1.1+spec-1.1.0 to 1.1.2+spec-1.1.0

Commits

Updates value-bag from 1.12.0 to 1.13.0

Release notes

Sourced from value-bag's releases.

1.13.0

What's Changed

Full Changelog: sval-rs/value-bag@v1.12.0...1.13.0

Commits
  • fbecbb3 Merge pull request #108 from sval-rs/cargo/1.13.0
  • 09474ab prepare for 1.13.0 release
  • b9a8809 Merge pull request #107 from sval-rs/fix/display-buffer
  • d79bcd3 fill in more tests for string inlining
  • 7edb96c add a Cargo feature for larger inline strings
  • 2e5debe store small Debug/Display types inline
  • 372997a Merge pull request #104 from sval-rs/feat/criterion
  • cdcce03 don't pull in criterion on wasm
  • 8257eb7 update MSRV to 1.71.0
  • 507750a update miri toolchain
  • Additional commits viewable in compare view

Updates value-bag-serde1 from 1.12.0 to 1.13.0

Updates value-bag-sval2 from 1.12.0 to 1.13.0

Updates winnow from 1.0.3 to 1.0.4

Changelog

Sourced from winnow's changelog.

[1.0.4] - 2026-07-13

Fixes

  • Expand the number of supported fields for seq! from 22 to 32
Commits
  • 7539ec0 chore: Release
  • 6c51cfa docs: Update changelog
  • 278451f Merge pull request #928 from weifanglab/fix-seq-many-fields
  • c04179e chore(deps): Update Rust Stable to v1.97 (#929)
  • ae574a2 style: Make clippy happy
  • 3305231 fix(macros): allow seq! with more fields
  • 84cc03a Merge pull request #926 from winnow-rs/renovate/actions-checkout-7.x
  • 8d50527 Merge pull request #925 from winnow-rs/renovate/crate-ci-typos-1.x
  • 2444381 chore(deps): Update actions/checkout action to v7
  • 26d4dae chore(deps): Update pre-commit hook crate-ci/typos to v1.48.0
  • Additional commits viewable in compare view

Updates zerocopy from 0.8.53 to 0.8.54

Release notes

Sourced from zerocopy's releases.

v0.8.54

What's Changed

New Contributors

Full Changelog: google/zerocopy@v0.8.53...v0.8.54

Commits

Updates zerocopy-derive from 0.8.53 to 0.8.54

Release notes

Sourced from zerocopy-derive's releases.

v0.8.54

What's Changed

New Contributors

Full Changelog: google/zerocopy@v0.8.53...v0.8.54

Commits

Updates zmij from 1.0.21 to 1.0.23

Release notes

Sourced from zmij's releases.

1.0.23

1.0.22

No release notes provided.

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [http-body-util](https://github.com/hyperium/http-body) | `0.1.3` | `0.1.4` |
| [toml](https://github.com/toml-rs/toml) | `1.1.2+spec-1.1.0` | `1.1.3+spec-1.1.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.66` | `1.2.67` |
| [crossfire](https://github.com/frostyplanet/crossfire-rs) | `3.1.18` | `3.1.19` |
| [http-body](https://github.com/hyperium/http-body) | `1.0.1` | `1.1.0` |
| [jiff](https://github.com/BurntSushi/jiff) | `0.2.31` | `0.2.32` |
| [jiff-static](https://github.com/BurntSushi/jiff) | `0.2.31` | `0.2.32` |
| [mio](https://github.com/tokio-rs/mio) | `1.2.1` | `1.2.2` |
| [regex](https://github.com/rust-lang/regex) | `1.12.4` | `1.13.0` |
| [regex-automata](https://github.com/rust-lang/regex) | `0.4.14` | `0.4.15` |
| [rustls](https://github.com/rustls/rustls) | `0.23.41` | `0.23.42` |
| [tinyvec](https://github.com/Lokathor/tinyvec) | `1.11.0` | `1.12.0` |
| [toml_writer](https://github.com/toml-rs/toml) | `1.1.1+spec-1.1.0` | `1.1.2+spec-1.1.0` |
| [value-bag](https://github.com/sval-rs/value-bag) | `1.12.0` | `1.13.0` |
| value-bag-serde1 | `1.12.0` | `1.13.0` |
| value-bag-sval2 | `1.12.0` | `1.13.0` |
| [winnow](https://github.com/winnow-rs/winnow) | `1.0.3` | `1.0.4` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.53` | `0.8.54` |
| [zerocopy-derive](https://github.com/google/zerocopy) | `0.8.53` | `0.8.54` |
| [zmij](https://github.com/dtolnay/zmij) | `1.0.21` | `1.0.23` |


Updates `http-body-util` from 0.1.3 to 0.1.4
- [Release notes](https://github.com/hyperium/http-body/releases)
- [Commits](hyperium/http-body@http-body-util-v0.1.3...http-body-util-v0.1.4)

Updates `toml` from 1.1.2+spec-1.1.0 to 1.1.3+spec-1.1.0
- [Commits](toml-rs/toml@toml-v1.1.2...toml-v1.1.3)

Updates `cc` from 1.2.66 to 1.2.67
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.66...cc-v1.2.67)

Updates `crossfire` from 3.1.18 to 3.1.19
- [Release notes](https://github.com/frostyplanet/crossfire-rs/releases)
- [Changelog](https://github.com/frostyplanet/crossfire-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/frostyplanet/crossfire-rs/commits)

Updates `http-body` from 1.0.1 to 1.1.0
- [Release notes](https://github.com/hyperium/http-body/releases)
- [Commits](hyperium/http-body@v1.0.1...v1.1.0)

Updates `jiff` from 0.2.31 to 0.2.32
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.31...jiff-static-0.2.32)

Updates `jiff-static` from 0.2.31 to 0.2.32
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.31...jiff-static-0.2.32)

Updates `mio` from 1.2.1 to 1.2.2
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v1.2.1...v1.2.2)

Updates `regex` from 1.12.4 to 1.13.0
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.12.4...1.13.0)

Updates `regex-automata` from 0.4.14 to 0.4.15
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@regex-automata-0.4.14...regex-automata-0.4.15)

Updates `rustls` from 0.23.41 to 0.23.42
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.41...v/0.23.42)

Updates `tinyvec` from 1.11.0 to 1.12.0
- [Changelog](https://github.com/Lokathor/tinyvec/blob/main/CHANGELOG.md)
- [Commits](Lokathor/tinyvec@v1.11.0...v1.12.0)

Updates `toml_writer` from 1.1.1+spec-1.1.0 to 1.1.2+spec-1.1.0
- [Commits](toml-rs/toml@toml_writer-v1.1.1...toml_writer-v1.1.2)

Updates `value-bag` from 1.12.0 to 1.13.0
- [Release notes](https://github.com/sval-rs/value-bag/releases)
- [Commits](sval-rs/value-bag@v1.12.0...1.13.0)

Updates `value-bag-serde1` from 1.12.0 to 1.13.0

Updates `value-bag-sval2` from 1.12.0 to 1.13.0

Updates `winnow` from 1.0.3 to 1.0.4
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v1.0.3...v1.0.4)

Updates `zerocopy` from 0.8.53 to 0.8.54
- [Release notes](https://github.com/google/zerocopy/releases)
- [Commits](google/zerocopy@v0.8.53...v0.8.54)

Updates `zerocopy-derive` from 0.8.53 to 0.8.54
- [Release notes](https://github.com/google/zerocopy/releases)
- [Commits](google/zerocopy@v0.8.53...v0.8.54)

Updates `zmij` from 1.0.21 to 1.0.23
- [Release notes](https://github.com/dtolnay/zmij/releases)
- [Commits](dtolnay/zmij@1.0.21...1.0.23)

---
updated-dependencies:
- dependency-name: http-body-util
  dependency-version: 0.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: toml
  dependency-version: 1.1.3+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cc
  dependency-version: 1.2.67
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: crossfire
  dependency-version: 3.1.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: http-body
  dependency-version: 1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jiff
  dependency-version: 0.2.32
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: jiff-static
  dependency-version: 0.2.32
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mio
  dependency-version: 1.2.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: regex
  dependency-version: 1.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: regex-automata
  dependency-version: 0.4.15
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: rustls
  dependency-version: 0.23.42
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tinyvec
  dependency-version: 1.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: toml_writer
  dependency-version: 1.1.2+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: value-bag
  dependency-version: 1.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: value-bag-serde1
  dependency-version: 1.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: value-bag-sval2
  dependency-version: 1.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: winnow
  dependency-version: 1.0.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: zerocopy
  dependency-version: 0.8.54
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: zerocopy-derive
  dependency-version: 0.8.54
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: zmij
  dependency-version: 1.0.23
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jul 15, 2026

Copy link
Copy Markdown
Contributor Author

Milestone

The specified milestone could not be found on this repository. If you view a milestone, the final part of the page URL, after milestone, is the identifier. For example: https://github.com/<org>/<repo>/milestone/3.

Labels

The following labels could not be found: dependencies, rust. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant