Skip to content

Commit

Permalink
Update utils in preparation for release (#1249)
Browse files Browse the repository at this point in the history
* Bump writeable to 0.2.1

* Update dependency on writeable

* Bump yoke version to 0.3.0

* Update dependency on yoke

* Bump zerovec version to 0.4.1

* Bump icu_pattern to 0.1.1

* Bump CPT to 0.3.0

* Update dependency on CPT

* Bump uniset to 0.4.0

* Update dependency on uniset
  • Loading branch information
Manishearth authored Nov 1, 2021
1 parent c68d73b commit 6975267
Show file tree
Hide file tree
Showing 21 changed files with 35 additions and 35 deletions.
12 changes: 6 additions & 6 deletions 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 components/datetime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ icu_locid = { version = "0.3", path = "../locid" }
icu_plurals = { version = "0.3", path = "../plurals" }
icu_provider = { version = "0.3", path = "../../provider/core", features = ["macros"] }
icu_calendar = { version = "0.3", path = "../calendar" }
writeable = { version = "0.2", path = "../../utils/writeable" }
writeable = { version = "0.2.1", path = "../../utils/writeable" }
litemap = { version = "0.2", path = "../../utils/litemap" }
tinystr = { version = "0.4.10", features = ["alloc"], default-features = false }
zerovec = { version = "0.4", path = "../../utils/zerovec", features = ["yoke"] }
Expand Down
2 changes: 1 addition & 1 deletion components/decimal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ all-features = true
icu_locid = { version = "0.3", path = "../locid" }
icu_provider = { version = "0.3", path = "../../provider/core", features = ["macros"] }
fixed_decimal = { version = "0.2", path = "../../utils/fixed_decimal" }
writeable = { version = "0.2", path = "../../utils/writeable" }
writeable = { version = "0.2.1", path = "../../utils/writeable" }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
displaydoc = { version = "0.2.3", default-features = false }

Expand Down
6 changes: 3 additions & 3 deletions components/icu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ path = "../../utils/fixed_decimal"
default-features = false

[dev-dependencies]
icu_codepointtrie = { version = "0.2", path = "../../utils/codepointtrie" }
icu_codepointtrie = { version = "0.3", path = "../../utils/codepointtrie" }
icu_provider = { version = "0.3", path = "../../provider/core" }
icu_testdata = { version = "0.3", path = "../../provider/testdata", features = ["static"] }
icu_uniset = { version = "0.3", path = "../../utils/uniset" }
writeable = { version = "0.2", path = "../../utils/writeable" }
icu_uniset = { version = "0.4", path = "../../utils/uniset" }
writeable = { version = "0.2.1", path = "../../utils/writeable" }

[features]
std = [
Expand Down
2 changes: 1 addition & 1 deletion components/locid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ all-features = true
[dependencies]
tinystr = { version = "0.4.10", features = ["alloc"], default-features = false }
serde = { version = "1.0", optional = true, default-features = false, features = ["alloc"] }
writeable = { version = "0.2", path = "../../utils/writeable" }
writeable = { version = "0.2.1", path = "../../utils/writeable" }
displaydoc = { version = "0.2.3", default-features = false }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions components/properties/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ all-features = true

[dependencies]
displaydoc = { version = "0.2.3", default-features = false }
icu_codepointtrie = { version = "0.2", path = "../../utils/codepointtrie", features = ["serde"] }
icu_codepointtrie = { version = "0.3", path = "../../utils/codepointtrie", features = ["serde"] }
icu_provider = { version = "0.3", path = "../../provider/core", features = ["macros"] }
icu_uniset = { version = "0.3", path = "../../utils/uniset", features = ["serde"] }
icu_uniset = { version = "0.4", path = "../../utils/uniset", features = ["serde"] }
num_enum = { version = "0.5.4", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
zerovec = { version = "0.4", path = "../../utils/zerovec", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion experimental/bies/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ all-features = true
itertools = "0.10"
num-traits = "0.2"
partial-min-max = "0.4"
writeable = { version = "0.2", path = "../../utils/writeable" }
writeable = { version = "0.2.1", path = "../../utils/writeable" }
strum = { version = "0.20", features = ["derive"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion experimental/segmenter_lstm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ litemap = { version = "0.2", path = "../../utils/litemap", features = ["serde"]
serde = { version = "1.0", default-features = false, features = ["derive", "std"] }
ndarray = { version = "0.15", features = ["serde"] }
unicode-segmentation = "1.3.0"
yoke = { path = "../../utils/yoke", features = ["serde", "derive"] }
yoke = { version = "0.3", path = "../../utils/yoke", features = ["serde", "derive"] }

[dev-dependencies]
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion provider/blob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ postcard = { version = "0.7.0", default-features = false }
erased-serde = { version = "0.3", default-features = false, features = ["alloc"] }
litemap = { version = "0.2.0", path = "../../utils/litemap/", features = ["serde"] }
writeable = { path = "../../utils/writeable" }
yoke = { path = "../../utils/yoke" }
yoke = { version = "0.3", path = "../../utils/yoke" }

# For the export feature
log = { version = "0.4", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions provider/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ macros = ["icu_provider_macros"]
[dependencies]
icu_locid = { version = "0.3", path = "../../components/locid" }
tinystr = { version = "0.4.10", features = ["alloc"], default-features = false }
writeable = { version = "0.2", path = "../../utils/writeable" }
writeable = { version = "0.2.1", path = "../../utils/writeable" }
displaydoc = { version = "0.2.3", default-features = false }
yoke = { version = "0.2.1", path = "../../utils/yoke", features = ["serde", "derive"] }
yoke = { version = "0.3", path = "../../utils/yoke", features = ["serde", "derive"] }
litemap = { path = "../../utils/litemap", version = "0.2.1" }
icu_provider_macros = { version = "0.3", path = "../macros", optional = 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 @@ -142,7 +142,7 @@ cargo_metadata = { version = "0.13", optional = true }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
serde_json = { version = "1.0", optional = true, default-features = false, features = ["alloc"] }
displaydoc = { version = "0.2.3", default-features = false, optional = true }
writeable = { version = "0.2", path = "../../utils/writeable", optional = true }
writeable = { version = "0.2.1", path = "../../utils/writeable", optional = true }

[dev-dependencies]
icu_locid_macros = { version = "0.3", path = "../../components/locid/macros" }
Expand Down
4 changes: 2 additions & 2 deletions provider/uprops/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ all-features = true

[dependencies]
displaydoc = { version = "0.2.3", default-features = false }
icu_codepointtrie = { version = "0.2", path = "../../utils/codepointtrie", features = ["provider_serde"] }
icu_codepointtrie = { version = "0.3", path = "../../utils/codepointtrie", features = ["provider_serde"] }
icu_properties = { version = "0.3", path = "../../components/properties", features = ["provider_serde"] }
icu_provider = { version = "0.3", path = "../../provider/core", features = ["provider_serde"] }
icu_uniset = { version = "0.3", path = "../../utils/uniset", features = ["provider_serde"] }
icu_uniset = { version = "0.4", path = "../../utils/uniset", features = ["provider_serde"] }
serde = { version = "1.0", features = ["derive"] }
toml = { version = "0.5" }
zerovec = { version = "0.4", path = "../../utils/zerovec", features = ["serde", "yoke"] }
Expand Down
2 changes: 1 addition & 1 deletion tools/datagen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ reqwest = { version = "0.11", features = ["json", "stream", "gzip"] }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
simple_logger = "1.12"
tokio = { version = "1.5", features = ["rt-multi-thread", "macros", "fs"] }
writeable = { version = "0.2", path = "../../utils/writeable" }
writeable = { version = "0.2.1", path = "../../utils/writeable" }

[[bin]]
name = "icu4x-datagen"
Expand Down
4 changes: 2 additions & 2 deletions utils/codepointtrie/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[package]
name = "icu_codepointtrie"
description = "API for an efficient trie of data for Unicode code points"
version = "0.2.0"
version = "0.3.0"
authors = ["The ICU4X Project Developers"]
edition = "2018"
readme = "README.md"
Expand Down Expand Up @@ -34,7 +34,7 @@ all-features = true
[dependencies]
displaydoc = { version = "0.2.3", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
yoke = { path = "../yoke", version = "0.2.0", features = ["derive"] }
yoke = { version = "0.3", path = "../yoke", features = ["derive"] }
zerovec = { version = "0.4", path = "../../utils/zerovec", features = ["serde", "yoke"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion utils/fixed_decimal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ all-features = true
[dependencies]
smallvec = "1.6"
static_assertions = "1.1"
writeable = { version = "0.2", path = "../../utils/writeable" }
writeable = { version = "0.2.1", path = "../../utils/writeable" }
displaydoc = { version = "0.2.3", default-features = false }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions 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.1.1"
authors = ["The ICU4X Project Developers"]
edition = "2018"
readme = "README.md"
Expand All @@ -25,7 +25,7 @@ all-features = true

[dependencies]
displaydoc = { version = "0.2.3", default-features = false }
writeable = { version = "0.2", path = "../writeable" }
writeable = { version = "0.2.1", path = "../writeable" }

[dev-dependencies]
iai = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions utils/uniset/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[package]
name = "icu_uniset"
description = "API for highly efficient querying of sets of Unicode characters"
version = "0.3.0"
version = "0.4.0"
authors = ["The ICU4X Project Developers"]
edition = "2018"
readme = "README.md"
Expand Down Expand Up @@ -36,7 +36,7 @@ litemap = { version = "0.2", path = "../../utils/litemap" }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
tinystr = { version = "0.4.10", features = ["alloc"], default-features = false }
displaydoc = { version = "0.2.3", default-features = false }
yoke = { path = "../yoke", version = "0.2.0", features = ["derive"] }
yoke = { version = "0.3", path = "../yoke", features = ["derive"] }
zerovec = { version = "0.4", path = "../../utils/zerovec", features = ["serde"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion utils/writeable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[package]
name = "writeable"
description = "A more efficient alternative to fmt::Display"
version = "0.2.0"
version = "0.2.1"
authors = ["The ICU4X Project Developers"]
edition = "2018"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion utils/yoke/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "yoke"
version = "0.2.3"
version = "0.3.0"
description = "Abstraction allowing borrowed data to be carried along with the backing data it borrows from"
authors = ["Manish Goregaokar <manishsmail@gmail.com>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion utils/yoke/derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ syn = { version = "1.0.73", features = ["derive", "fold"] }
synstructure = "0.12.4"

[dev-dependencies]
yoke = { path = "..", version = "0.2.0" , features = ["derive"]}
yoke = { version = "0.3", path = "..", features = ["derive"]}
zerovec = { version = "0.4", path = "../../zerovec", features = ["yoke"] }
4 changes: 2 additions & 2 deletions utils/zerovec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[package]
name = "zerovec"
description = "Zero-copy vector backed by a byte array"
version = "0.4.0"
version = "0.4.1"
authors = ["The ICU4X Project Developers"]
edition = "2018"
readme = "README.md"
Expand All @@ -25,7 +25,7 @@ all-features = true

[dependencies]
serde = { version = "1.0", optional = true , default-features = false, features = ["alloc"] }
yoke = { path = "../yoke", version = "0.2.0", optional = true }
yoke = { version = "0.3", path = "../yoke", optional = true }

[dev-dependencies]
icu_benchmark_macros = { version = "0.3", path = "../../tools/benchmark/macros" }
Expand Down

0 comments on commit 6975267

Please sign in to comment.