Browse Source

Fix individual compilation of `boa_parser`

releases/0.17
jedel1043 1 year ago
parent
commit
747c2952a7
No known key found for this signature in database
  1. 3
      Cargo.lock
  2. 3
      boa_parser/Cargo.toml

3
Cargo.lock generated

@ -542,13 +542,16 @@ dependencies = [
"boa_macros", "boa_macros",
"boa_profiler", "boa_profiler",
"fast-float", "fast-float",
"icu_locid",
"icu_properties", "icu_properties",
"icu_provider", "icu_provider",
"icu_provider_macros",
"num-bigint", "num-bigint",
"num-traits", "num-traits",
"once_cell", "once_cell",
"regress", "regress",
"rustc-hash", "rustc-hash",
"tinystr",
] ]
[[package]] [[package]]

3
boa_parser/Cargo.toml

@ -24,6 +24,9 @@ num-bigint = "0.4.3"
regress = "0.6.0" regress = "0.6.0"
icu_properties = {version = "~1.2.0", features = ["serde"] } icu_properties = {version = "~1.2.0", features = ["serde"] }
icu_provider = "~1.2.0" icu_provider = "~1.2.0"
icu_locid = "~1.2.0"
icu_provider_macros = "~1.2.0"
tinystr = ">=0.7.0, <0.7.3"
once_cell = "1.18.0" once_cell = "1.18.0"
[features] [features]

Loading…
Cancel
Save