diff --git a/Cargo.lock b/Cargo.lock index 3225a678de..f997d42347 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2526,9 +2526,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.17.0" +version = "1.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" +checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" dependencies = [ "atomic-polyfill 1.0.1", "critical-section", diff --git a/boa_engine/Cargo.toml b/boa_engine/Cargo.toml index 420a229dc6..406d149144 100644 --- a/boa_engine/Cargo.toml +++ b/boa_engine/Cargo.toml @@ -57,7 +57,7 @@ ryu-js = "0.2.2" chrono = "0.4.23" fast-float = "0.2.0" unicode-normalization = "0.1.22" -once_cell = "1.17.0" +once_cell = "1.17.1" tap = "1.0.1" sptr = "0.3.2" static_assertions = "1.1.0" diff --git a/boa_icu_provider/Cargo.toml b/boa_icu_provider/Cargo.toml index 5d6eaae21e..fd60e8fdd1 100644 --- a/boa_icu_provider/Cargo.toml +++ b/boa_icu_provider/Cargo.toml @@ -16,7 +16,7 @@ rust-version.workspace = true icu_provider = { version = "1.1.0", features = ["serde", "sync"] } icu_provider_blob = "1.1.0" icu_provider_adapters = { version = "1.1.0", features = ["serde"] } -once_cell = {version = "1.17.0", default-features = false, features = ["critical-section"]} +once_cell = {version = "1.17.1", default-features = false, features = ["critical-section"]} icu_datagen = { version = "1.1.1", optional = true } log = { version = "0.4.17", optional = true } simple_logger = { version = "4.0.0", optional = true } diff --git a/boa_interner/Cargo.toml b/boa_interner/Cargo.toml index 4b493b0c89..d25456453e 100644 --- a/boa_interner/Cargo.toml +++ b/boa_interner/Cargo.toml @@ -19,7 +19,7 @@ boa_macros.workspace = true phf = { version = "0.11.1", default-features = false, features = ["macros"] } rustc-hash = { version = "1.1.0", default-features = false } static_assertions = "1.1.0" -once_cell = {version = "1.17.0", default-features = false, features = ["critical-section"]} +once_cell = {version = "1.17.1", default-features = false, features = ["critical-section"]} indexmap = "1.9.2" serde = { version = "1.0.152", features = ["derive"], optional = true } arbitrary = { version = "1", features = ["derive"], optional = true } diff --git a/boa_profiler/Cargo.toml b/boa_profiler/Cargo.toml index 7ff95d93b8..7142fbd546 100644 --- a/boa_profiler/Cargo.toml +++ b/boa_profiler/Cargo.toml @@ -15,5 +15,5 @@ profiler = ["measureme", "once_cell", "rustc-hash"] [dependencies] measureme = { version = "10.1.1", optional = true } -once_cell = { version = "1.17.0", optional = true } +once_cell = { version = "1.17.1", optional = true } rustc-hash = { version = "1.1.0", optional = true } diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index eee7344f05..638cfc70d3 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -20,7 +20,7 @@ serde_yaml = "0.9.17" serde_json = "1.0.93" bitflags = "1.3.2" regex = "1.7.1" -once_cell = "1.17.0" +once_cell = "1.17.1" colored = "2.0.0" fxhash = "0.2.1" rayon = "1.6.1"