Skip to content

Commit

Permalink
Published changes (#4958)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbastian authored May 28, 2024
1 parent 55cd12e commit 599f336
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions components/collections/codepointtrie_builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include = [
"Cargo.toml",
"LICENSE",
"README.md",
"list_to_ucptrie.wasm"
"ucptrie_wrap.wasm"
]

authors.workspace = true
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion components/segmenter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion provider/testdata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
2 changes: 1 addition & 1 deletion utils/pattern/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 599f336

Please sign in to comment.