Skip to content

build(deps): bump the minor group with 31 updates - #326

Merged
benbrandt merged 1 commit into
mainfrom
dependabot/cargo/minor-b34952c150
Aug 20, 2026
Merged

build(deps): bump the minor group with 31 updates#326
benbrandt merged 1 commit into
mainfrom
dependabot/cargo/minor-b34952c150

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 31 updates:

Package From To
thiserror 2.0.19 2.0.20
futures 0.3.33 0.3.34
async-trait 0.1.91 0.1.92
aws-lc-rs 1.17.3 1.18.0
aws-lc-sys 0.43.0 0.44.0
futures-channel 0.3.33 0.3.34
futures-core 0.3.33 0.3.34
futures-executor 0.3.33 0.3.34
futures-io 0.3.33 0.3.34
futures-macro 0.3.33 0.3.34
futures-sink 0.3.33 0.3.34
futures-task 0.3.33 0.3.34
futures-util 0.3.33 0.3.34
http-body-util 0.1.4 0.1.5
icu_normalizer 2.2.0 2.3.0
icu_normalizer_data 2.2.0 2.3.0
icu_properties 2.2.0 2.3.0
icu_properties_data 2.2.0 2.3.0
icu_provider 2.2.0 2.3.0
litemap 0.8.2 0.8.3
pkg-config 0.3.33 0.3.34
potential_utf 0.1.5 0.1.6
rustls-webpki 0.103.13 0.103.14
serde_with 3.21.0 3.22.0
serde_with_macros 3.21.0 3.22.0
thiserror-impl 2.0.19 2.0.20
tinystr 0.8.3 0.8.4
writeable 0.6.3 0.6.4
zerotrie 0.2.4 0.2.5
zerovec 0.11.6 0.11.7
zerovec-derive 0.11.3 0.11.4

Updates thiserror from 2.0.19 to 2.0.20

Release notes

Sourced from thiserror's releases.

2.0.20

  • Suppress redundant_field_names clippy lint in generated code (#454)
Commits

Updates futures from 0.3.33 to 0.3.34

Release notes

Sourced from futures's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates async-trait from 0.1.91 to 0.1.92

Release notes

Sourced from async-trait's releases.

0.1.92

  • Resolve double_must_use clippy lint in generated code (#303)
Commits

Updates aws-lc-rs from 1.17.3 to 1.18.0

Release notes

Sourced from aws-lc-rs's releases.

aws-lc-rs v1.18.0

AWS-LC-FIPS module updated to 4.x

This release switches aws-lc-fips-sys (used via the fips feature) from the AWS-LC-FIPS 3.x branch to AWS-LC-FIPS 4.0.

AWS-LC-FIPS module aws-lc-rs
2.0.x <1.12.0
3.0.x <1.18.0
4.x latest

What's Changed

  • Switch aws-lc-fips-sys to AWS-LC's "FIPS 4.0" branch by @​justsmth in aws/aws-lc-rs#1185
    • aws-lc-fips-sys v0.13.16 -> v0.14.0. Please see the call-out above.
  • The ML-DSA signature APIs are now stable 🎉 by @​justsmth in aws/aws-lc-rs#1188 and aws/aws-lc-rs#1189
    • PqdsaKeyPair, PqdsaPublicKey, PqdsaPrivateKey, PqdsaSigningAlgorithm, PqdsaVerificationAlgorithm, and the ML_DSA_44 / ML_DSA_65 / ML_DSA_87 algorithms (and their _SIGNING counterparts) now live in aws_lc_rs::signature. ML-DSA no longer requires the unstable feature, and is now available under fips -- the FIPS 4.0 module provides ML-DSA, which is what had kept these APIs unstable. See our updated API documentation.
    • Please migrate any use of aws_lc_rs::unstable::signature to aws_lc_rs::signature. The unstable::signature module remains as deprecated aliases and will be removed in a future release.
    • PqdsaKeyPair::to_pkcs8 has been renamed to to_pkcs8v1, since elsewhere in the module an unqualified to_pkcs8 means PKCS#8 v2. A deprecated to_pkcs8 alias remains available under the unstable feature.
    • Existing unstable consumers continue to compile, with deprecation warnings. Two cases need a source change: builds using #![deny(warnings)], and code that glob-imports both signature::* and unstable::signature::*, which now needs an explicit import to disambiguate.
    • Behavior change: PqdsaVerificationAlgorithm::parsed_verify_digest_sig now always returns Unspecified. Digest-then-verify is not an operation defined by FIPS 204 -- pure ML-DSA signs the message itself, and the pre-hash variant (HashML-DSA) uses a distinct domain separator that this API does not implement.
  • Add out-of-place AEAD sealing by @​iainmcgin in aws/aws-lc-rs#1183
    • Adds seal_separate_out_of_place to LessSafeKey and TlsRecordSealingKey. Every sealing entry point was previously in-place, so a caller whose plaintext was borrowed or shared had to copy it into a scratch buffer purely to make it mutable. This mirrors the existing open_separate_gather, so the sealing and opening directions now match.
  • Add rsa::KeyPair::from_components for constructing RSA key pairs from raw components by @​justsmth in aws/aws-lc-rs#1175
    • Adds rsa::KeyPairComponents and rsa::KeyPair::from_components, matching ring 0.17, so a signing key can be built from formats such as JWK without first encoding the components as DER. Unlike ring, d and the CRT parameters are validated at construction using RSA_check_key, so keys with inconsistent or placeholder values that ring accepts may be rejected. Unnecessary generic bounds were also removed from PublicKeyComponents.
  • Automatically optimize aws-lc for size when opt-level is "s" or "z" by @​justsmth in aws/aws-lc-rs#1159
    • The builder now enables AWS-LC's size-optimized configuration (OPENSSL_SMALL, and no AVX-512 assembly on x86_64) whenever Cargo is already building for size. In CI, a small binary exercising SHA-256, AES-256-GCM, and ECDSA P-256 is 36-50% smaller at opt-level=z than at opt-level=3: 50% on x86_64 Linux, 48% on aarch64 macOS, 39% on x86_64 Windows, 36% on aarch64 Linux. Your own savings depend on how much of AWS-LC your binary retains.
    • No algorithms are removed and outputs are unchanged; the trade-off is slower elliptic-curve performance. Set AWS_LC_SYS_SMALL=1/=0 to force it on or off independently of opt-level.
    • FIPS builds do not opt in automatically: aws-lc-fips-sys requires an explicit AWS_LC_FIPS_SYS_SMALL=1, and warns when it is set.
    • Partially addresses aws/aws-lc-rs#745; the default size under opt-level=3 footprint is unchanged.
  • Export native library build metadata from the -sys crates by @​justsmth in aws/aws-lc-rs#1187, including original commits from @​glebpom in aws/aws-lc-rs#1184
    • Downstream build scripts compiling C code against AWS-LC can now locate our artifacts via DEP_AWS_LC_* / DEP_AWS_LC_FIPS_* (libdir, libcrypto_path, link_kind, and libssl_path with ssl), consistently across the CC, CMake, and system-library build paths. Existing linker directives are unchanged. On Windows, the *_path values are the link-time artifact (import library), not the runtime DLL.
  • Key wrap hardening by @​justsmth in aws/aws-lc-rs#1190 and aws/aws-lc-rs#1191
    • KeyEncryptionKey::unwrap no longer underflows on ciphertexts shorter than 8 bytes. Since the ciphertext is untrusted input, builds with overflow-checks = true would panic instead of returning the documented Err(Unspecified); default release builds were unaffected.
    • KeyEncryptionKey now zeroizes its key material on drop, consistent with the other key types in this crate.
  • docs(signature): correct outdated note about signing a separate digest by @​WesleyRosenblum in aws/aws-lc-rs#1186

Upstream AWS-LC (v5.5.0)

aws-lc-sys v0.44.0 aligns with AWS-LC v5.5.0 (previously v5.2.0). See also the release notes for v5.3.0 and v5.4.0.

Build Improvements

  • Fix bindings copy from read-only prebuilt AWS-LC install by @​justsmth in aws/aws-lc-rs#1194
    • Copies into OUT_DIR now remove any stale destination first and leave the fresh copy writable, so building against a read-only prebuilt install (e.g. the Nix store) no longer fails with Permission denied on a build-script rerun. An OUT_DIR already poisoned by an earlier build now recovers without a cargo clean.

Issues Being Closed

... (truncated)

Commits
  • f464440 Prepare aws-lc-rs v1.18.0 (#1200)
  • 7085f8b Fix bindings copy from read-only prebuilt AWS-LC install (#1194)
  • 2196440 Export native library build metadata from the -sys crates (#1187)
  • 623100f Prepare aws-lc-sys v0.44.0 (#1199)
  • 90c687e Add rsa::KeyPair::from_components for constructing RSA key pairs from raw c...
  • b84076f Automatically optimize aws-lc for size when opt-level is "s" or "z" (#1159)
  • 5a5408b Publish script fixes: cargo clean failure, and verify aws-lc-rs against minim...
  • a23dd38 ci: fix mdbook test failure and run docs checks on PRs (#1181)
  • 390622e fix: align PQDSA API with signature module conventions (#1189)
  • 4b0cb00 docs(signature): correct outdated note about signing a separate digest (#1186)
  • Additional commits viewable in compare view

Updates aws-lc-sys from 0.43.0 to 0.44.0

Commits
  • f464440 Prepare aws-lc-rs v1.18.0 (#1200)
  • 7085f8b Fix bindings copy from read-only prebuilt AWS-LC install (#1194)
  • 2196440 Export native library build metadata from the -sys crates (#1187)
  • 623100f Prepare aws-lc-sys v0.44.0 (#1199)
  • 90c687e Add rsa::KeyPair::from_components for constructing RSA key pairs from raw c...
  • b84076f Automatically optimize aws-lc for size when opt-level is "s" or "z" (#1159)
  • 5a5408b Publish script fixes: cargo clean failure, and verify aws-lc-rs against minim...
  • a23dd38 ci: fix mdbook test failure and run docs checks on PRs (#1181)
  • 390622e fix: align PQDSA API with signature module conventions (#1189)
  • 4b0cb00 docs(signature): correct outdated note about signing a separate digest (#1186)
  • Additional commits viewable in compare view

Updates futures-channel from 0.3.33 to 0.3.34

Release notes

Sourced from futures-channel's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures-channel's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates futures-core from 0.3.33 to 0.3.34

Release notes

Sourced from futures-core's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures-core's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates futures-executor from 0.3.33 to 0.3.34

Release notes

Sourced from futures-executor's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures-executor's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates futures-io from 0.3.33 to 0.3.34

Release notes

Sourced from futures-io's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures-io's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates futures-macro from 0.3.33 to 0.3.34

Release notes

Sourced from futures-macro's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures-macro's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates futures-sink from 0.3.33 to 0.3.34

Release notes

Sourced from futures-sink's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures-sink's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates futures-task from 0.3.33 to 0.3.34

Release notes

Sourced from futures-task's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures-task's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates futures-util from 0.3.33 to 0.3.34

Release notes

Sourced from futures-util's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures-util's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates http-body-util from 0.1.4 to 0.1.5

Commits

Updates icu_normalizer from 2.2.0 to 2.3.0

Release notes

Sourced from icu_normalizer's releases.

ICU4X 2.3.0

The ICU4X Technical Committee is happy to announce ICU4X 2.3, an update to our modular, portable, and secure i18n library.

Important changes in ICU4X 2.3 include:

  • icu_segmenter: Preview of our redesigned segmentation engine based on [PRI #555](https://unicode.org/review/pri555/) (new_neo) and an updated line segmenter compliant with Unicode 17 (new_17). Please provide feedback.
  • icu_locale::names: Preview of display name formatting with full language identifier support ("English (US)"), Tiny/Light/Heavy depth data slicing, and cross-language FFI bindings. Please provide feedback.
  • icu_datetime: Preview of date interval formatting in DateRangeFormatter and in FFI ("Dec 22 – 23, 2026"), plus support for flexible day periods ("8 in the morning") and other improvements.
  • icu_experimental::currency: Overhauled the experimental CurrencyFormatter to support generic value representations, ISO code formatting (try_new_code), and accounting usage.
  • icu_properties: New home for UTS#35 UnicodeSet parsing with support for :EastAsianWidth=: set syntax and Unicode 17 property updates.

See the full changelog for more information

Commits

Updates icu_normalizer_data from 2.2.0 to 2.3.0

Release notes

Sourced from icu_normalizer_data's releases.

ICU4X 2.3.0

The ICU4X Technical Committee is happy to announce ICU4X 2.3, an update to our modular, portable, and secure i18n library.

Important changes in ICU4X 2.3 include:

  • icu_segmenter: Preview of our redesigned segmentation engine based on [PRI #555](https://unicode.org/review/pri555/) (new_neo) and an updated line segmenter compliant with Unicode 17 (new_17). Please provide feedback.
  • icu_locale::names: Preview of display name formatting with full language identifier support ("English (US)"), Tiny/Light/Heavy depth data slicing, and cross-language FFI bindings. Please provide feedback.
  • icu_datetime: Preview of date interval formatting in DateRangeFormatter and in FFI ("Dec 22 – 23, 2026"), plus support for flexible day periods ("8 in the morning") and other improvements.
  • icu_experimental::currency: Overhauled the experimental CurrencyFormatter to support generic value representations, ISO code formatting (try_new_code), and accounting usage.
  • icu_properties: New home for UTS#35 UnicodeSet parsing with support for :EastAsianWidth=: set syntax and Unicode 17 property updates.

See the full changelog for more information

Commits

Updates icu_properties from 2.2.0 to 2.3.0

Release notes

Sourced from icu_properties's releases.

ICU4X 2.3.0

The ICU4X Technical Committee is happy to announce ICU4X 2.3, an update to our modular, portable, and secure i18n library.

Important changes in ICU4X 2.3 include:

  • icu_segmenter: Preview of our redesigned segmentation engine based on [PRI #555](https://unicode.org/review/pri555/) (new_neo) and an updated line segmenter compliant with Unicode 17 (new_17). Please provide feedback.
  • icu_locale::names: Preview of display name formatting with full language identifier support ("English (US)"), Tiny/Light/Heavy depth data slicing, and cross-language FFI bindings. Please provide feedback.
  • icu_datetime: Preview of date interval formatting in DateRangeFormatter and in FFI ("Dec 22 – 23, 2026"), plus support for flexible day periods ("8 in the morning") and other improvements.
  • icu_experimental::currency: Overhauled the experimental CurrencyFormatter to support generic value representations, ISO code formatting (try_new_code), and accounting usage.
  • icu_properties: New home for UTS#35 UnicodeSet parsing with support for :EastAsianWidth=: set syntax and Unicode 17 property updates.

See the full changelog for more information

Commits

Updates icu_properties_data from 2.2.0 to 2.3.0

Release notes

Sourced from icu_properties_data's releases.

ICU4X 2.3.0

The ICU4X Technical Committee is happy to announce ICU4X 2.3, an update to our modular, portable, and secure i18n library.

Important changes in ICU4X 2.3 include:

  • icu_segmenter: Preview of our redesigned segmentation engine based on [PRI #555](https://unicode.org/review/pri555/) (new_neo) and an updated line segmenter compliant with Unicode 17 (new_17). Please provide feedback.
  • icu_locale::names: Preview of display name formatting with full language identifier support ("English (US)"), Tiny/Light/Heavy depth data slicing, and cross-language FFI bindings. Please provide feedback.
  • icu_datetime: Preview of date interval formatting in DateRangeFormatter and in FFI ("Dec 22 – 23, 2026"), plus support for flexible day periods ("8 in the morning") and other improvements.
  • icu_experimental::currency: Overhauled the experimental CurrencyFormatter to support generic value representations, ISO code formatting (try_new_code), and accounting usage.
  • icu_properties: New home for UTS#35 UnicodeSet parsing with support for :EastAsianWidth=: set syntax and Unicode 17 property updates.

See the full changelog for more information

Commits
  • b1cec62 Bump icu_codepointtrie_builder to 0.6.1 (#8379)
  • a14f2da Bump component crates to 2.3.0 (#8373)
  • 41e2f3b Bump version numbers for utils, experimental, and pattern (#8372)
  • cd71954 Add changelog for ICU4X 2.3 (#8326)
  • d63cb17 Run cargo update for the main Cargo.lock (#8369)
  • 1c072ea Run cargo update in subdirectories (#8370)
  • fd8f2b0 Dart: Use stable record-use and remove enable-experiment flag (#8371)
  • ...

    Description has been truncated

Bumps the minor group with 31 updates:

| Package | From | To |
| --- | --- | --- |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.19` | `2.0.20` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.91` | `0.1.92` |
| [aws-lc-rs](https://github.com/aws/aws-lc-rs) | `1.17.3` | `1.18.0` |
| [aws-lc-sys](https://github.com/aws/aws-lc-rs) | `0.43.0` | `0.44.0` |
| [futures-channel](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [futures-core](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [futures-executor](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [futures-io](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [futures-macro](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [futures-sink](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [futures-task](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [futures-util](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [http-body-util](https://github.com/hyperium/http-body) | `0.1.4` | `0.1.5` |
| [icu_normalizer](https://github.com/unicode-org/icu4x) | `2.2.0` | `2.3.0` |
| [icu_normalizer_data](https://github.com/unicode-org/icu4x) | `2.2.0` | `2.3.0` |
| [icu_properties](https://github.com/unicode-org/icu4x) | `2.2.0` | `2.3.0` |
| [icu_properties_data](https://github.com/unicode-org/icu4x) | `2.2.0` | `2.3.0` |
| [icu_provider](https://github.com/unicode-org/icu4x) | `2.2.0` | `2.3.0` |
| [litemap](https://github.com/unicode-org/icu4x) | `0.8.2` | `0.8.3` |
| [pkg-config](https://github.com/rust-lang/pkg-config-rs) | `0.3.33` | `0.3.34` |
| [potential_utf](https://github.com/unicode-org/icu4x) | `0.1.5` | `0.1.6` |
| [rustls-webpki](https://github.com/rustls/webpki) | `0.103.13` | `0.103.14` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.21.0` | `3.22.0` |
| [serde_with_macros](https://github.com/jonasbb/serde_with) | `3.21.0` | `3.22.0` |
| [thiserror-impl](https://github.com/dtolnay/thiserror) | `2.0.19` | `2.0.20` |
| [tinystr](https://github.com/unicode-org/icu4x) | `0.8.3` | `0.8.4` |
| [writeable](https://github.com/unicode-org/icu4x) | `0.6.3` | `0.6.4` |
| [zerotrie](https://github.com/unicode-org/icu4x) | `0.2.4` | `0.2.5` |
| [zerovec](https://github.com/unicode-org/icu4x) | `0.11.6` | `0.11.7` |
| [zerovec-derive](https://github.com/unicode-org/icu4x) | `0.11.3` | `0.11.4` |


Updates `thiserror` from 2.0.19 to 2.0.20
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.19...2.0.20)

Updates `futures` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)

Updates `async-trait` from 0.1.91 to 0.1.92
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.91...0.1.92)

Updates `aws-lc-rs` from 1.17.3 to 1.18.0
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@v1.17.3...v1.18.0)

Updates `aws-lc-sys` from 0.43.0 to 0.44.0
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@aws-lc-sys/v0.43.0...aws-lc-sys/v0.44.0)

Updates `futures-channel` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)

Updates `futures-core` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)

Updates `futures-executor` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)

Updates `futures-io` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)

Updates `futures-macro` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)

Updates `futures-sink` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)

Updates `futures-task` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)

Updates `futures-util` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)

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

Updates `icu_normalizer` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/compare/icu@2.2.0...icu@2.3.0)

Updates `icu_normalizer_data` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/compare/icu@2.2.0...icu@2.3.0)

Updates `icu_properties` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/compare/icu@2.2.0...icu@2.3.0)

Updates `icu_properties_data` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/compare/icu@2.2.0...icu@2.3.0)

Updates `icu_provider` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/compare/icu@2.2.0...icu@2.3.0)

Updates `litemap` from 0.8.2 to 0.8.3
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits/ind/yoke@0.8.3)

Updates `pkg-config` from 0.3.33 to 0.3.34
- [Changelog](https://github.com/rust-lang/pkg-config-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/pkg-config-rs@0.3.33...0.3.34)

Updates `potential_utf` from 0.1.5 to 0.1.6
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `rustls-webpki` from 0.103.13 to 0.103.14
- [Release notes](https://github.com/rustls/webpki/releases)
- [Commits](https://github.com/rustls/webpki/commits)

Updates `serde_with` from 3.21.0 to 3.22.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.21.0...v3.22.0)

Updates `serde_with_macros` from 3.21.0 to 3.22.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.21.0...v3.22.0)

Updates `thiserror-impl` from 2.0.19 to 2.0.20
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.19...2.0.20)

Updates `tinystr` from 0.8.3 to 0.8.4
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `writeable` from 0.6.3 to 0.6.4
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `zerotrie` from 0.2.4 to 0.2.5
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `zerovec` from 0.11.6 to 0.11.7
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `zerovec-derive` from 0.11.3 to 0.11.4
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/compare/ind/zerovec@0.11.3...ind/zerovec@0.11.4)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: futures
  dependency-version: 0.3.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: async-trait
  dependency-version: 0.1.92
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: aws-lc-rs
  dependency-version: 1.18.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: aws-lc-sys
  dependency-version: 0.44.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: futures-channel
  dependency-version: 0.3.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: futures-core
  dependency-version: 0.3.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: futures-executor
  dependency-version: 0.3.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: futures-io
  dependency-version: 0.3.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: futures-macro
  dependency-version: 0.3.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: futures-sink
  dependency-version: 0.3.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: futures-task
  dependency-version: 0.3.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: futures-util
  dependency-version: 0.3.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: http-body-util
  dependency-version: 0.1.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: icu_normalizer
  dependency-version: 2.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: icu_normalizer_data
  dependency-version: 2.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: icu_properties
  dependency-version: 2.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: icu_properties_data
  dependency-version: 2.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: icu_provider
  dependency-version: 2.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: litemap
  dependency-version: 0.8.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: pkg-config
  dependency-version: 0.3.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: potential_utf
  dependency-version: 0.1.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rustls-webpki
  dependency-version: 0.103.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: serde_with
  dependency-version: 3.22.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: serde_with_macros
  dependency-version: 3.22.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: thiserror-impl
  dependency-version: 2.0.20
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: tinystr
  dependency-version: 0.8.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: writeable
  dependency-version: 0.6.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: zerotrie
  dependency-version: 0.2.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: zerovec
  dependency-version: 0.11.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: zerovec-derive
  dependency-version: 0.11.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Aug 17, 2026
@benbrandt
benbrandt merged commit 5886d05 into main Aug 20, 2026
12 checks passed
@benbrandt
benbrandt deleted the dependabot/cargo/minor-b34952c150 branch August 20, 2026 15:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant