Skip to content

Commit 0afcfbc

Browse files
committed
Cargo.toml fixups for ICU4X 1.0.0-beta1
1 parent e4a8294 commit 0afcfbc

File tree

18 files changed

+30
-25
lines changed

18 files changed

+30
-25
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/calendar/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ databake = { version = "0.1.0", path = "../../utils/databake", optional = true,
5050
criterion = "0.3"
5151
icu = { path = "../icu", default-features = false }
5252
icu_benchmark_macros = { version = "0.7", path = "../../tools/benchmark/macros" }
53-
icu_calendar = { version = "1.0.0-beta1", path = "../calendar", features = ["serde"] }
54-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata" }
53+
icu_calendar = { path = "../calendar", features = ["serde"] }
54+
icu_testdata = { path = "../../provider/testdata" }
5555
serde = { version = "1.0", features = ["derive"] }
5656
serde_json = "1.0"
5757

components/collator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ databake = { version = "0.1.0", path = "../../utils/databake", optional = true,
4747
zerofrom = { version = "0.1.0", path = "../../utils/zerofrom" }
4848

4949
[dev-dependencies]
50-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata" }
50+
icu_testdata = { path = "../../provider/testdata" }
5151
atoi = "1.0.0"
5252
arraystring = "0.3.0"
5353

components/collections/codepointtrie_builder/Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ include = [
2020
"tests/**/*",
2121
"Cargo.toml",
2222
"LICENSE",
23-
"README.md"
23+
"README.md",
24+
"list_to_ucptrie.wasm"
2425
]
2526

2627
[dependencies]
27-
icu_collections = { path = "..", features = ["serde"] }
28+
icu_collections = { version = "1.0.0-beta1", path = "..", features = ["serde"] }
2829
lazy_static = { version = "1.4.0" }
2930
toml = "0.5"
3031

components/datetime/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ icu = { path = "../icu", default-features = false, features = ["experimental"] }
5656
icu_benchmark_macros = { version = "0.7", path = "../../tools/benchmark/macros" }
5757
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core" }
5858
icu_provider_adapters = { path = "../../provider/adapters" }
59-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata", features = ["baked"] }
59+
icu_testdata = { path = "../../provider/testdata", features = ["baked"] }
6060
icu_calendar = { version = "1.0.0-beta1", path = "../calendar", features = ["serde"] }
61-
icu_datetime = { version = "1.0.0-beta1", path = "../../components/datetime", features = ["datagen"] }
61+
icu_datetime = { path = "../../components/datetime", features = ["datagen"] }
6262

6363
serde = { version = "1.0", features = ["derive"] }
6464
serde_json = "1.0"

components/decimal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ databake = { version = "0.1.0", path = "../../utils/databake", optional = true,
4343
criterion = "0.3"
4444
icu = { path = "../icu", default-features = false }
4545
icu_benchmark_macros = { version = "0.7", path = "../../tools/benchmark/macros" }
46-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata" }
46+
icu_testdata = { path = "../../provider/testdata" }
4747
icu_provider_adapters = { path = "../../provider/adapters" }
4848
rand = "0.8"
4949
rand_pcg = "0.3"

components/icu/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ icu_timezone = { version = "1.0.0-beta1", path = "../timezone", default-features
4343
icu_segmenter = { version = "1.0.0-alpha1", path = "../../experimental/segmenter", default-features = false, optional = true }
4444

4545
[dev-dependencies]
46-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata" }
46+
icu_testdata = { path = "../../provider/testdata" }
4747

4848
[features]
4949
default = []

components/list/Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ categories = ["internationalization"]
1515
# Keep this in sync with other crates unless there are exceptions
1616
include = [
1717
"src/**/*",
18+
"examples/**/*",
19+
"benches/**/*",
20+
"tests/**/*",
1821
"Cargo.toml",
22+
"LICENSE",
1923
"README.md"
2024
]
2125

@@ -34,7 +38,7 @@ databake = { version = "0.1.0", path = "../../utils/databake", optional = true,
3438
criterion = "0.3.3"
3539
serde_json = "1"
3640
postcard = { version = "1.0.0-alpha.4", features = ["use-std"] }
37-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata", features = ["baked"] }
41+
icu_testdata = { path = "../../provider/testdata", features = ["baked"] }
3842
icu_benchmark_macros = { version = "0.7", path = "../../tools/benchmark/macros" }
3943

4044
[lib]

components/locid_transform/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ databake = { version = "0.1.0", path = "../../utils/databake", optional = true,
4040

4141
[dev-dependencies]
4242
criterion = "0.3.3"
43-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata" }
43+
icu_testdata = { path = "../../provider/testdata" }
4444
serde = { version = "1.0", features = ["derive"] }
4545
serde_json = "1.0"
4646

components/normalizer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ databake = { version = "0.1.0", path = "../../utils/databake", optional = true,
4646
zerofrom = { version = "0.1.0", path = "../../utils/zerofrom" }
4747

4848
[dev-dependencies]
49-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata" }
49+
icu_testdata = { path = "../../provider/testdata" }
5050
atoi = "1.0.0"
5151
arraystring = "0.3.0"
5252
arrayvec = "0.7.2"

components/plurals/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ icu = { path = "../icu", default-features = false }
4646
icu_benchmark_macros = { version = "0.7", path = "../../tools/benchmark/macros" }
4747
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core" }
4848
icu_locid = { version = "1.0.0-beta1", path = "../locid" }
49-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata" }
49+
icu_testdata = { path = "../../provider/testdata" }
5050
serde = { version = "1.0", features = ["derive"] }
5151
serde_json = { version = "1.0" }
5252

components/properties/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ databake = { version = "0.1.0", path = "../../utils/databake", optional = true,
4242

4343
[dev-dependencies]
4444
icu = { path = "../icu", default-features = false }
45-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata" }
45+
icu_testdata = { path = "../../provider/testdata" }
4646

4747
[lib]
4848
bench = false # This option is required for Benchmark CI

components/timezone/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ databake = { version = "0.1.0", path = "../../utils/databake", optional = true,
4949

5050
[dev-dependencies]
5151
icu = { path = "../../components/icu", default-features = false, features = ["experimental"] }
52-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata" }
52+
icu_testdata = { path = "../../provider/testdata" }

experimental/segmenter/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ include = [
2828
skip_optional_dependencies = true
2929

3030
[dependencies]
31-
icu_collections = { path = "../../components/collections" }
31+
icu_collections = { version = "1.0.0-beta1", path = "../../components/collections" }
3232
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core", features = ["macros"] }
3333
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
3434
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
@@ -41,7 +41,7 @@ icu_locid = { version = "1.0.0-beta1", path = "../../components/locid" }
4141

4242
[dev-dependencies]
4343
criterion = "0.3"
44-
icu_testdata = { version = "1.0.0-beta1", path = "../../provider/testdata" }
44+
icu_testdata = { path = "../../provider/testdata" }
4545
serde-json-core = { version = "0.4", features = ["std"] }
4646

4747
[lib]

provider/adapters/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ yoke = { version = "0.6", path = "../../utils/yoke" }
3030
zerovec = { version = "0.8", path = "../../utils/zerovec", features = ["yoke"] }
3131
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
3232
databake = { version = "0.1.0", path = "../../utils/databake", optional = true, features = ["derive"]}
33-
tinystr = { path = "../../utils/tinystr", features = ["zerovec"] }
33+
tinystr = { version = "0.6", path = "../../utils/tinystr", features = ["zerovec"] }
3434

3535
[dev-dependencies]
3636
icu_testdata = { path = "../testdata" }

provider/datagen/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ icu_provider_fs = { version = "1.0.0-beta1", path = "../fs", features = ["export
5959
displaydoc = { version = "0.2.3", default-features = false }
6060
elsa = "1.7"
6161
icu_collections = { version = "1.0.0-beta1", path = "../../components/collections", features = ["serde"] }
62-
icu_codepointtrie_builder = { path = "../../components/collections/codepointtrie_builder" }
62+
icu_codepointtrie_builder = { version = "0.3.3", path = "../../components/collections/codepointtrie_builder" }
6363
icu_locid = { version = "1.0.0-beta1", path = "../../components/locid", features = ["std"]}
6464
itertools = "0.10"
6565
log = "0.4"
@@ -78,7 +78,7 @@ syn = {version = "1.0", features = ["parsing"] }
7878
writeable = { version = "0.4", path = "../../utils/writeable" }
7979
zip = "0.6"
8080
cached-path = "0.5"
81-
reqwest = { version = "*", features = ["blocking"] }
81+
reqwest = { version = "0.11", features = ["blocking"] }
8282
lazy_static = "1"
8383

8484
# Dependencies for "bin" feature

utils/zerovec/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
name = "zerovec"
77
description = "Zero-copy vector backed by a byte array"
8-
version = "0.8.0"
8+
version = "0.8.1"
99
authors = ["The ICU4X Project Developers"]
1010
edition = "2018"
1111
readme = "README.md"
@@ -29,7 +29,7 @@ all-features = true
2929
serde = { version = "1.0", optional = true, default-features = false, features = ["alloc"] }
3030
yoke = { version = "0.6.0", path = "../yoke", optional = true }
3131
zerofrom = { version = "0.1.0", path = "../zerofrom" }
32-
zerovec-derive = {version = "0.6.0", path = "./derive", optional = true}
32+
zerovec-derive = {version = "0.8.0", path = "./derive", optional = true}
3333
databake = { version = "0.1.0", path = "../../utils/databake", features = ["derive"], optional = true }
3434

3535
[dev-dependencies]

utils/zerovec/derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "zerovec-derive"
7-
version = "0.6.1"
7+
version = "0.8.0"
88
description = "Custom derive for the zerovec crate"
99
repository = "https://github.com/unicode-org/icu4x"
1010
license = "Unicode-DFS-2016"

0 commit comments

Comments
 (0)