diff --git a/Cargo.lock b/Cargo.lock index 1f222e7408..a2b1a3d1b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -136,7 +136,7 @@ dependencies = [ "async-task", "concurrent-queue", "fastrand 2.0.1", - "futures-lite", + "futures-lite 1.13.0", "slab", ] @@ -149,7 +149,7 @@ dependencies = [ "async-lock", "autocfg", "blocking", - "futures-lite", + "futures-lite 1.13.0", ] [[package]] @@ -162,7 +162,7 @@ dependencies = [ "autocfg", "cfg-if", "concurrent-queue", - "futures-lite", + "futures-lite 1.13.0", "log", "parking", "polling", @@ -189,7 +189,7 @@ checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f" dependencies = [ "async-io", "blocking", - "futures-lite", + "futures-lite 1.13.0", ] [[package]] @@ -204,7 +204,7 @@ dependencies = [ "blocking", "cfg-if", "event-listener 3.0.0", - "futures-lite", + "futures-lite 1.13.0", "rustix 0.38.20", "windows-sys 0.48.0", ] @@ -310,7 +310,7 @@ dependencies = [ "async-task", "fastrand 2.0.1", "futures-io", - "futures-lite", + "futures-lite 1.13.0", "piper", "tracing", ] @@ -368,7 +368,7 @@ dependencies = [ "fast-float", "fixed_decimal", "float-cmp", - "futures-lite", + "futures-lite 2.0.0", "icu_calendar", "icu_casemap", "icu_collator", @@ -1192,6 +1192,21 @@ dependencies = [ "waker-fn", ] +[[package]] +name = "futures-lite" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63" +dependencies = [ + "fastrand 2.0.1", + "futures-core", + "futures-io", + "memchr", + "parking", + "pin-project-lite", + "waker-fn", +] + [[package]] name = "futures-macro" version = "0.3.28" @@ -2748,7 +2763,7 @@ dependencies = [ "async-net", "async-process", "blocking", - "futures-lite", + "futures-lite 1.13.0", ] [[package]] diff --git a/boa_engine/Cargo.toml b/boa_engine/Cargo.toml index 24973a4300..75a4167949 100644 --- a/boa_engine/Cargo.toml +++ b/boa_engine/Cargo.toml @@ -110,7 +110,7 @@ criterion = "0.5.1" float-cmp = "0.9.0" indoc.workspace = true textwrap.workspace = true -futures-lite = "1.13.0" +futures-lite = "2.0.0" [target.x86_64-unknown-linux-gnu.dev-dependencies] jemallocator = "0.5.4"