Browse Source

Bump futures-lite from 1.13.0 to 2.0.0 (#3422)

Bumps [futures-lite](https://github.com/smol-rs/futures-lite) from 1.13.0 to 2.0.0.
- [Release notes](https://github.com/smol-rs/futures-lite/releases)
- [Changelog](https://github.com/smol-rs/futures-lite/blob/master/CHANGELOG.md)
- [Commits](https://github.com/smol-rs/futures-lite/compare/v1.13.0...v2.0.0)

---
updated-dependencies:
- dependency-name: futures-lite
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
pull/3425/head
dependabot[bot] 1 year ago committed by GitHub
parent
commit
7bd10b6897
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 31
      Cargo.lock
  2. 2
      boa_engine/Cargo.toml

31
Cargo.lock generated

@ -136,7 +136,7 @@ dependencies = [
"async-task", "async-task",
"concurrent-queue", "concurrent-queue",
"fastrand 2.0.1", "fastrand 2.0.1",
"futures-lite", "futures-lite 1.13.0",
"slab", "slab",
] ]
@ -149,7 +149,7 @@ dependencies = [
"async-lock", "async-lock",
"autocfg", "autocfg",
"blocking", "blocking",
"futures-lite", "futures-lite 1.13.0",
] ]
[[package]] [[package]]
@ -162,7 +162,7 @@ dependencies = [
"autocfg", "autocfg",
"cfg-if", "cfg-if",
"concurrent-queue", "concurrent-queue",
"futures-lite", "futures-lite 1.13.0",
"log", "log",
"parking", "parking",
"polling", "polling",
@ -189,7 +189,7 @@ checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f"
dependencies = [ dependencies = [
"async-io", "async-io",
"blocking", "blocking",
"futures-lite", "futures-lite 1.13.0",
] ]
[[package]] [[package]]
@ -204,7 +204,7 @@ dependencies = [
"blocking", "blocking",
"cfg-if", "cfg-if",
"event-listener 3.0.0", "event-listener 3.0.0",
"futures-lite", "futures-lite 1.13.0",
"rustix 0.38.20", "rustix 0.38.20",
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
@ -310,7 +310,7 @@ dependencies = [
"async-task", "async-task",
"fastrand 2.0.1", "fastrand 2.0.1",
"futures-io", "futures-io",
"futures-lite", "futures-lite 1.13.0",
"piper", "piper",
"tracing", "tracing",
] ]
@ -368,7 +368,7 @@ dependencies = [
"fast-float", "fast-float",
"fixed_decimal", "fixed_decimal",
"float-cmp", "float-cmp",
"futures-lite", "futures-lite 2.0.0",
"icu_calendar", "icu_calendar",
"icu_casemap", "icu_casemap",
"icu_collator", "icu_collator",
@ -1192,6 +1192,21 @@ dependencies = [
"waker-fn", "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]] [[package]]
name = "futures-macro" name = "futures-macro"
version = "0.3.28" version = "0.3.28"
@ -2748,7 +2763,7 @@ dependencies = [
"async-net", "async-net",
"async-process", "async-process",
"blocking", "blocking",
"futures-lite", "futures-lite 1.13.0",
] ]
[[package]] [[package]]

2
boa_engine/Cargo.toml

@ -110,7 +110,7 @@ criterion = "0.5.1"
float-cmp = "0.9.0" float-cmp = "0.9.0"
indoc.workspace = true indoc.workspace = true
textwrap.workspace = true textwrap.workspace = true
futures-lite = "1.13.0" futures-lite = "2.0.0"
[target.x86_64-unknown-linux-gnu.dev-dependencies] [target.x86_64-unknown-linux-gnu.dev-dependencies]
jemallocator = "0.5.4" jemallocator = "0.5.4"

Loading…
Cancel
Save