Browse Source

Bump itertools from 0.10.5 to 0.11.0 (#3061)

Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.10.5 to 0.11.0.
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-itertools/itertools/compare/v0.10.5...v0.11.0)

---
updated-dependencies:
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

17
Cargo.lock generated

@ -428,7 +428,7 @@ dependencies = [
"icu_segmenter",
"indexmap",
"indoc",
"itertools",
"itertools 0.11.0",
"jemallocator",
"num-bigint",
"num-integer",
@ -1019,7 +1019,7 @@ dependencies = [
"ciborium",
"clap 3.2.23",
"criterion-plot",
"itertools",
"itertools 0.10.5",
"lazy_static",
"num-traits",
"oorandom",
@ -1040,7 +1040,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
dependencies = [
"cast",
"itertools",
"itertools 0.10.5",
]
[[package]]
@ -2052,7 +2052,7 @@ dependencies = [
"icu_relativetime",
"icu_segmenter",
"icu_timezone",
"itertools",
"itertools 0.10.5",
"lazy_static",
"log",
"ndarray",
@ -2449,6 +2449,15 @@ dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.6"

2
boa_engine/Cargo.toml

@ -75,7 +75,7 @@ dashmap = "5.4.0"
num_enum = "0.6.1"
pollster = "0.3.0"
thin-vec = "0.2.12"
itertools = { version = "0.10.5", default-features = false }
itertools = { version = "0.11.0", default-features = false }
icu_normalizer = "1.2.0"
# intl deps

Loading…
Cancel
Save