Skip to content

Commit 826c39e

Browse files
committed
Update itertools to 0.11.
Because the API for `with_position` improved in 0.11 and I want to use it.
1 parent 5b56acc commit 826c39e

File tree

17 files changed

+18
-18
lines changed

17 files changed

+18
-18
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2126,9 +2126,9 @@ dependencies = [
21262126

21272127
[[package]]
21282128
name = "itertools"
2129-
version = "0.10.5"
2129+
version = "0.11.0"
21302130
source = "registry+https://github.com/rust-lang/crates.io-index"
2131-
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2131+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
21322132
dependencies = [
21332133
"either",
21342134
]

compiler/rustc_ast_passes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.10.1"
8+
itertools = "0.11"
99
rustc_ast = { path = "../rustc_ast" }
1010
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1111
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_borrowck/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
# tidy-alphabetical-start
88
either = "1.5.0"
9-
itertools = "0.10.1"
9+
itertools = "0.11"
1010
polonius-engine = "0.13.0"
1111
rustc_data_structures = { path = "../rustc_data_structures" }
1212
rustc_errors = { path = "../rustc_errors" }

compiler/rustc_codegen_llvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test = false
1010
# tidy-alphabetical-start
1111
bitflags = "1.0"
1212
cstr = "0.2"
13-
itertools = "0.10.5"
13+
itertools = "0.11"
1414
libc = "0.2"
1515
measureme = "10.0.0"
1616
object = { version = "0.32.0", default-features = false, features = ["std", "read"] }

compiler/rustc_codegen_ssa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
ar_archive_writer = "0.1.5"
99
bitflags = "1.2.1"
1010
cc = "1.0.69"
11-
itertools = "0.10.1"
11+
itertools = "0.11"
1212
jobserver = "0.1.22"
1313
pathdiff = "0.2.0"
1414
regex = "1.4"

compiler/rustc_data_structures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bitflags = "1.2.1"
1010
elsa = "=1.7.1"
1111
ena = "0.14.2"
1212
indexmap = { version = "2.0.0" }
13-
itertools = "0.10.1"
13+
itertools = "0.11"
1414
jobserver_crate = { version = "0.1.13", package = "jobserver" }
1515
libc = "0.2"
1616
measureme = "10.0.0"

compiler/rustc_mir_transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
# tidy-alphabetical-start
88
either = "1"
9-
itertools = "0.10.1"
9+
itertools = "0.11"
1010
rustc_arena = { path = "../rustc_arena" }
1111
rustc_ast = { path = "../rustc_ast" }
1212
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_passes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.10.1"
8+
itertools = "0.11"
99
rustc_ast = { path = "../rustc_ast" }
1010
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1111
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_transmute/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ rustc = [
2727

2828
[dev-dependencies]
2929
# tidy-alphabetical-start
30-
itertools = "0.10.1"
30+
itertools = "0.11"
3131
# tidy-alphabetical-end

compiler/rustc_ty_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.10.1"
8+
itertools = "0.11"
99
rustc_data_structures = { path = "../rustc_data_structures" }
1010
rustc_errors = { path = "../rustc_errors" }
1111
rustc_fluent_macro = { path = "../rustc_fluent_macro" }

src/librustdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ path = "lib.rs"
99
[dependencies]
1010
arrayvec = { version = "0.7", default-features = false }
1111
askama = { version = "0.12", default-features = false, features = ["config"] }
12-
itertools = "0.10.1"
12+
itertools = "0.11"
1313
indexmap = "2"
1414
minifier = "0.3.0"
1515
once_cell = "1.10.0"

src/tools/clippy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ toml = "0.7.3"
3737
walkdir = "2.3"
3838
# This is used by the `collect-metadata` alias.
3939
filetime = "0.2"
40-
itertools = "0.10.1"
40+
itertools = "0.11"
4141

4242
# UI test dependencies
4343
clippy_utils = { path = "clippy_utils" }

src/tools/clippy/clippy_dev/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
aho-corasick = "0.7"
88
clap = "4.1.4"
99
indoc = "1.0"
10-
itertools = "0.10.1"
10+
itertools = "0.11"
1111
opener = "0.5"
1212
shell-escape = "0.1"
1313
walkdir = "2.3"

src/tools/clippy/clippy_lints/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ clippy_config = { path = "../clippy_config" }
1515
clippy_utils = { path = "../clippy_utils" }
1616
declare_clippy_lint = { path = "../declare_clippy_lint" }
1717
if_chain = "1.0"
18-
itertools = "0.10.1"
18+
itertools = "0.11"
1919
quine-mc_cluskey = "0.2"
2020
regex-syntax = "0.7"
2121
serde = { version = "1.0", features = ["derive"] }

src/tools/clippy/clippy_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
clippy_config = { path = "../clippy_config" }
99
arrayvec = { version = "0.7", default-features = false }
1010
if_chain = "1.0"
11-
itertools = "0.10.1"
11+
itertools = "0.11"
1212
rustc-semver = "1.1"
1313

1414
[features]

src/tools/clippy/declare_clippy_lint/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
proc-macro = true
99

1010
[dependencies]
11-
itertools = "0.10.1"
11+
itertools = "0.11"
1212
quote = "1.0.21"
1313
syn = "2.0"
1414

src/tools/rustfmt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ diff = "0.1"
4343
dirs = "4.0"
4444
getopts = "0.2"
4545
ignore = "0.4"
46-
itertools = "0.10"
46+
itertools = "0.11"
4747
lazy_static = "1.4"
4848
regex = "1.7"
4949
serde = { version = "1.0.160", features = ["derive"] }

0 commit comments

Comments
 (0)