diff --git a/Cargo.lock b/Cargo.lock index 72e9094ba03..cb6e9f484c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2834,9 +2834,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.17.1" +version = "1.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" +checksum = "9670a07f94779e00908f3e686eab508878ebb390ba6e604d3a284c00e8d0487b" dependencies = [ "atomic-polyfill", "critical-section", diff --git a/boa_engine/Cargo.toml b/boa_engine/Cargo.toml index 1b59d7e951e..57bb5f6deb3 100644 --- a/boa_engine/Cargo.toml +++ b/boa_engine/Cargo.toml @@ -66,7 +66,7 @@ indexmap = "1.9.3" ryu-js = "0.2.2" chrono = { version = "0.4.24", default-features = false, features = ["clock", "std"] } fast-float = "0.2.0" -once_cell = "1.17.1" +once_cell = "1.17.2" 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 b83b12cd15e..09fe6767047 100644 --- a/boa_icu_provider/Cargo.toml +++ b/boa_icu_provider/Cargo.toml @@ -22,7 +22,7 @@ zerovec = "0.9.4" icu_datagen = { version = "1.2.5", optional = true } icu_provider_blob = { version = "1.2.0", optional = true } icu_provider_adapters = { version = "1.2.0", features = ["serde"], optional = true } -once_cell = { version = "1.17.1", default-features = false, features = [ +once_cell = { version = "1.17.2", default-features = false, features = [ "critical-section", ], optional = true } log = { version = "0.4.18", optional = true } diff --git a/boa_interner/Cargo.toml b/boa_interner/Cargo.toml index 23f099b5364..756b4852fc6 100644 --- a/boa_interner/Cargo.toml +++ b/boa_interner/Cargo.toml @@ -20,7 +20,7 @@ boa_gc.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.1", default-features = false, features = ["critical-section"]} +once_cell = {version = "1.17.2", default-features = false, features = ["critical-section"]} indexmap = "1.9.3" serde = { version = "1.0.163", features = ["derive"], optional = true } arbitrary = { version = "1", features = ["derive"], optional = true } diff --git a/boa_parser/Cargo.toml b/boa_parser/Cargo.toml index 3bbd3c02321..3a2443c7b25 100644 --- a/boa_parser/Cargo.toml +++ b/boa_parser/Cargo.toml @@ -23,7 +23,7 @@ bitflags = "2.3.1" num-bigint = "0.4.3" regress = "0.6.0" icu_properties = "1.2.0" -once_cell = "1.17.1" +once_cell = "1.17.2" [features] annex-b = [] diff --git a/boa_profiler/Cargo.toml b/boa_profiler/Cargo.toml index 7142fbd5469..bda0ffd64f4 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.1", optional = true } +once_cell = { version = "1.17.2", optional = true } rustc-hash = { version = "1.1.0", optional = true } diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 568f46fc31e..3a14ad98983 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -20,7 +20,7 @@ serde_yaml = "0.9.21" serde_json = "1.0.96" bitflags = "2.3.1" regex = "1.8.3" -once_cell = "1.17.1" +once_cell = "1.17.2" colored = "2.0.0" fxhash = "0.2.1" rayon = "1.7.0"