Skip to content

Commit

Permalink
Pin ICU4X related deps to minor versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Sep 26, 2023
1 parent 22144ed commit 04dec3c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
30 changes: 15 additions & 15 deletions boa_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,25 +76,25 @@ num_enum = "0.7.0"
pollster = "0.3.0"
thin-vec = "0.2.12"
itertools = { version = "0.11.0", default-features = false }
icu_normalizer = "1.3.0"
icu_normalizer = "~1.3.0"

# intl deps
boa_icu_provider = {workspace = true, features = ["std"], optional = true }
icu_provider = { version = "1.3.0", optional = true }
icu_locid = { version = "1.3.0", features = ["serde"], optional = true }
icu_locid_transform = { version = "1.3.0", default-features = false, features = ["std", "serde"], optional = true }
icu_datetime = { version = "1.3.0", default-features = false, features = ["serde", "experimental"], optional = true }
icu_calendar = { version = "1.3.0", default-features = false, optional = true }
icu_collator = { version = "1.3.0", default-features = false, features = ["serde"], optional = true }
icu_plurals = { version = "1.3.0", default-features = false, features = ["serde"], optional = true }
icu_list = { version = "1.3.0", default-features = false, features = ["serde"], optional = true }
icu_casemap = { version = "1.3.0", default-features = false, features = ["serde"], optional = true}
icu_segmenter = { version = "1.3.0", default-features = false, features = ["auto", "serde"], optional = true }
writeable = { version = "0.5.3", optional = true }
yoke = { version = "0.7.2", optional = true }
zerofrom = { version = "0.1.3", optional = true }
sys-locale = { version = "0.3.1", optional = true }
fixed_decimal = { version = "0.5.4", features = ["ryu"], optional = true}
icu_provider = { version = "~1.3.0", optional = true }
icu_locid = { version = "~1.3.0", features = ["serde"], optional = true }
icu_locid_transform = { version = "~1.3.0", default-features = false, features = ["std", "serde"], optional = true }
icu_datetime = { version = "~1.3.0", default-features = false, features = ["serde", "experimental"], optional = true }
icu_calendar = { version = "~1.3.0", default-features = false, optional = true }
icu_collator = { version = "~1.3.0", default-features = false, features = ["serde"], optional = true }
icu_plurals = { version = "~1.3.0", default-features = false, features = ["serde"], optional = true }
icu_list = { version = "~1.3.0", default-features = false, features = ["serde"], optional = true }
icu_casemap = { version = "~1.3.0", default-features = false, features = ["serde"], optional = true}
icu_segmenter = { version = "~1.3.0", default-features = false, features = ["auto", "serde"], optional = true }
writeable = { version = "~0.5.3", optional = true }
yoke = { version = "~0.7.2", optional = true }
zerofrom = { version = "~0.1.3", optional = true }
fixed_decimal = { version = "~0.5.4", features = ["ryu"], optional = true}

[dev-dependencies]
criterion = "0.5.1"
Expand Down
8 changes: 4 additions & 4 deletions boa_icu_provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
icu_provider = { version = "1.3.0", features = ["serde", "sync"] }
icu_provider_blob = { version = "1.3.0" }
icu_provider_adapters = { version = "1.3.0", features = ["serde"] }
icu_provider = { version = "~1.3.0", features = ["serde", "sync"] }
icu_provider_blob = { version = "~1.3.0" }
icu_provider_adapters = { version = "~1.3.0", features = ["serde"] }
once_cell = { version = "1.18.0", default-features = false, features = ["critical-section"] }

icu_datagen = { version = "1.3.0", optional = true }
icu_datagen = { version = "~1.3.0", optional = true }
log = { version = "0.4.20", optional = true }
simple_logger = { version = "4.2.0", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion boa_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ num-traits = "0.2.16"
bitflags = "2.4.0"
num-bigint = "0.4.4"
regress = "0.7.1"
icu_properties = "1.3.0"
icu_properties = "~1.3.0"

[features]
annex-b = []

0 comments on commit 04dec3c

Please sign in to comment.