diff --git a/Cargo.lock b/Cargo.lock index 4a94750cb88..deead13b7e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1369,7 +1369,7 @@ version = "1.5.0" [[package]] name = "icu_pattern" -version = "0.1.0" +version = "0.2.0" dependencies = [ "databake", "displaydoc", diff --git a/Cargo.toml b/Cargo.toml index a9ef226b51b..76bd66e9cdc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -180,7 +180,7 @@ databake = { version = "0.1.8", path = "utils/databake", default-features = fals databake-derive = { version = "0.1.8", path = "utils/databake/derive", default-features = false } deduplicating_array = { version = "0.1.6", path = "utils/deduplicating_array", default-features = false } fixed_decimal = { version = "0.5.6", path = "utils/fixed_decimal", default-features = false } -icu_pattern = { version = "0.1.0", path = "utils/pattern", default-features = false } +icu_pattern = { version = "0.2.0", path = "utils/pattern", default-features = false } ixdtf = { version = "0.2.0", path = "utils/ixdtf", default-features = false } litemap = { version = "0.7.3", path = "utils/litemap", default-features = false } tinystr = { version = "0.7.5", path = "utils/tinystr", default-features = false } diff --git a/components/collections/codepointtrie_builder/Cargo.toml b/components/collections/codepointtrie_builder/Cargo.toml index 04845eb56e4..b0f559bf131 100644 --- a/components/collections/codepointtrie_builder/Cargo.toml +++ b/components/collections/codepointtrie_builder/Cargo.toml @@ -15,7 +15,7 @@ include = [ "Cargo.toml", "LICENSE", "README.md", - "list_to_ucptrie.wasm" + "ucptrie_wrap.wasm" ] authors.workspace = true @@ -45,7 +45,7 @@ zerovec = { workspace = true } wasmi = { workspace = true, optional = true } [dev-dependencies] -icu = { workspace = true } +icu = { path = "../../icu" } [package.metadata.cargo-all-features] skip_optional_dependencies = true diff --git a/components/segmenter/Cargo.toml b/components/segmenter/Cargo.toml index 5731286c9f8..0f4bbe7d454 100644 --- a/components/segmenter/Cargo.toml +++ b/components/segmenter/Cargo.toml @@ -37,7 +37,7 @@ icu_locid_transform = { workspace = true, optional = true, features = ["compiled [dev-dependencies] icu = { path = "../../components/icu", default-features = false } -icu_properties = { workspace = true, features = ["compiled_data"] } +icu_properties = { path = "../properties", features = ["compiled_data"] } itertools = { workspace = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } diff --git a/provider/testdata/Cargo.toml b/provider/testdata/Cargo.toml index add5052654a..bea30fef33a 100644 --- a/provider/testdata/Cargo.toml +++ b/provider/testdata/Cargo.toml @@ -42,7 +42,7 @@ icu_provider_blob = { version = "~1.5.0", path = "../blob", default-features = f # databake deps icu_locid = { version = "~1.5.0", path = "../../components/locid", default-features = false } icu_collections = { version = "~1.5.0", path = "../../components/collections", default-features = false } -icu_pattern = { version = "0.1.0", path = "../../utils/pattern", default-features = false } +icu_pattern = { version = "0.2.0", path = "../../utils/pattern", default-features = false } zerovec = { version = "0.10.0", path = "../../utils/zerovec", default-features = false } zerotrie = { version = "0.1.0", path = "../../utils/zerotrie" } diff --git a/utils/pattern/Cargo.toml b/utils/pattern/Cargo.toml index d402f9c7c25..e4139592f39 100644 --- a/utils/pattern/Cargo.toml +++ b/utils/pattern/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "icu_pattern" description = "ICU pattern utilities" -version = "0.1.0" +version = "0.2.0" authors.workspace = true edition.workspace = true