From 12473d43db987fbeceb366adf3a1639407fa2cb4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Aug 2026 03:37:00 +0000 Subject: [PATCH] chore(deps): bump icu_locid from 1.5.0 to 2.0.0 Bumps [icu_locid](https://github.com/unicode-org/icu4x) from 1.5.0 to 2.0.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@1.5.0...icu@2.0.0) --- updated-dependencies: - dependency-name: icu_locid dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++++----- crates/stringcheese-en/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 22511be..f012a8f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1049,7 +1049,7 @@ dependencies = [ "displaydoc", "icu_casemap_data", "icu_collections 1.5.0", - "icu_locid", + "icu_locid 1.5.0", "icu_properties 1.5.1", "icu_provider 1.5.0", "writeable 0.5.5", @@ -1139,6 +1139,12 @@ dependencies = [ "zerovec 0.10.4", ] +[[package]] +name = "icu_locid" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4b1caaf463dca211ec77afa9210dfa507f99f76168faf15d650ab7ad03416fd" + [[package]] name = "icu_locid_transform" version = "1.5.0" @@ -1146,7 +1152,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" dependencies = [ "displaydoc", - "icu_locid", + "icu_locid 1.5.0", "icu_locid_transform_data", "icu_provider 1.5.0", "tinystr 0.7.6", @@ -1251,7 +1257,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" dependencies = [ "displaydoc", - "icu_locid", + "icu_locid 1.5.0", "icu_provider_macros", "stable_deref_trait", "tinystr 0.7.6", @@ -1296,7 +1302,7 @@ dependencies = [ "core_maths", "displaydoc", "icu_collections 1.5.0", - "icu_locid", + "icu_locid 1.5.0", "icu_provider 1.5.0", "icu_segmenter_data", "utf8_iter", @@ -2621,7 +2627,7 @@ name = "stringcheese-en" version = "0.1.0" dependencies = [ "icu_collator", - "icu_locid", + "icu_locid 2.0.0", "icu_provider 1.5.0", "proptest", "stringcheese-icu-case", diff --git a/crates/stringcheese-en/Cargo.toml b/crates/stringcheese-en/Cargo.toml index b902e1c..43a7d6a 100644 --- a/crates/stringcheese-en/Cargo.toml +++ b/crates/stringcheese-en/Cargo.toml @@ -103,7 +103,7 @@ icu_collator = { version = "1.5", optional = true } # `icu_locid` — the `locale!("en")` macro that names the CLDR locale # passed to `Collator::try_new`. Same version family as the # already-in-tree `icu_casemap` dependency (both at ICU4X 1.5). -icu_locid = { version = "1.5", optional = true } +icu_locid = { version = "2.0", optional = true } # `icu_provider` with the `sync` feature. Enabling `sync` swaps # ICU4X's internal `Rc`-based smart pointers for `Arc`s, which is # what makes the resulting `Collator` `Send + Sync` — required for