From 747c2952a7f8a7539b20327a73b8c9f5b4975895 Mon Sep 17 00:00:00 2001 From: jedel1043 Date: Tue, 26 Sep 2023 11:01:30 -0600 Subject: [PATCH] Fix individual compilation of `boa_parser` --- Cargo.lock | 3 +++ boa_parser/Cargo.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 43953ac52f..d48687e3eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -542,13 +542,16 @@ dependencies = [ "boa_macros", "boa_profiler", "fast-float", + "icu_locid", "icu_properties", "icu_provider", + "icu_provider_macros", "num-bigint", "num-traits", "once_cell", "regress", "rustc-hash", + "tinystr", ] [[package]] diff --git a/boa_parser/Cargo.toml b/boa_parser/Cargo.toml index e54ea226cf..9592aaf8a1 100644 --- a/boa_parser/Cargo.toml +++ b/boa_parser/Cargo.toml @@ -24,6 +24,9 @@ num-bigint = "0.4.3" regress = "0.6.0" icu_properties = {version = "~1.2.0", features = ["serde"] } 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" [features]