From 9eef74e45e9ff9e560e3a57fa9de6474bacd03ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 May 2026 00:11:39 +0000 Subject: [PATCH] chore(deps): bump the cargo-weekly group across 1 directory with 2 updates Bumps the cargo-weekly group with 2 updates in the / directory: [idna_adapter](https://github.com/hsivonen/idna_adapter) and [pin-project](https://github.com/taiki-e/pin-project). Updates `idna_adapter` from 1.1.0 to 1.2.1 - [Commits](https://github.com/hsivonen/idna_adapter/compare/v1.1.0...v1.2.1) Updates `pin-project` from 1.1.12 to 1.1.13 - [Release notes](https://github.com/taiki-e/pin-project/releases) - [Changelog](https://github.com/taiki-e/pin-project/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/pin-project/compare/v1.1.12...v1.1.13) --- updated-dependencies: - dependency-name: idna_adapter dependency-version: 1.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-weekly - dependency-name: pin-project dependency-version: 1.1.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-weekly ... Signed-off-by: dependabot[bot] --- Cargo.lock | 47 ++++++++--------------------------------------- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 40 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80968c05636c5..bd6e20c3351aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6394,22 +6394,12 @@ dependencies = [ [[package]] name = "idna_adapter" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "279259b0ac81c89d11c290495fdcfa96ea3643b7df311c138b6fe8ca5237f0f8" -dependencies = [ - "idna_mapping", - "unicode-bidi", - "unicode-normalization", -] - -[[package]] -name = "idna_mapping" -version = "1.1.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11c13906586a4b339310541a274dd927aff6fcbb5b8e3af90634c4b31681c792" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" dependencies = [ - "unicode-joining-type", + "icu_normalizer", + "icu_properties", ] [[package]] @@ -8172,18 +8162,18 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.1.12" +version = "1.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbf0d9e68100b3a7989b4901972f265cd542e560a3a8a724e1e20322f4d06ce9" +checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.12" +version = "1.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a990e22f43e84855daf260dded30524ef4a9021cc7541c26540500a50b624389" +checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" dependencies = [ "proc-macro2", "quote", @@ -12151,39 +12141,18 @@ version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" -[[package]] -name = "unicode-bidi" -version = "0.3.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" - [[package]] name = "unicode-ident" version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" -[[package]] -name = "unicode-joining-type" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8d00a78170970967fdb83f9d49b92f959ab2bb829186b113e4f4604ad98e180" - [[package]] name = "unicode-linebreak" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" -[[package]] -name = "unicode-normalization" -version = "0.1.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" -dependencies = [ - "tinyvec", -] - [[package]] name = "unicode-segmentation" version = "1.13.2" diff --git a/Cargo.toml b/Cargo.toml index d339373edd496..5ed524c53a5ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -535,7 +535,7 @@ snapbox = { version = "0.6", features = ["json", "regex", "term-svg"] } # Use unicode-rs which has a smaller binary size than the default ICU4X as the IDNA backend, used # by the `url` crate. # See the `idna_adapter` README.md for more details: https://docs.rs/crate/idna_adapter/latest -idna_adapter = "=1.1.0" +idna_adapter = "=1.2.1" [patch.crates-io] # https://github.com/rust-cli/rexpect/pull/106