Skip to content

Commit d96714b

Browse files
committed
itertools, use git repo
1 parent 25140e5 commit d96714b

File tree

18 files changed

+18
-18
lines changed

18 files changed

+18
-18
lines changed

compiler/rustc_ast_passes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.12"
8+
itertools = { git = "https://github.com/rust-itertools/itertools" }
99
rustc_ast = { path = "../rustc_ast" }
1010
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1111
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_ast_pretty/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.12"
8+
itertools = { git = "https://github.com/rust-itertools/itertools" }
99
rustc_ast = { path = "../rustc_ast" }
1010
rustc_lexer = { path = "../rustc_lexer" }
1111
rustc_span = { path = "../rustc_span" }

compiler/rustc_borrowck/Cargo.toml

+1-1
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.12"
9+
itertools = { git = "https://github.com/rust-itertools/itertools" }
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test = false
99
[dependencies]
1010
# tidy-alphabetical-start
1111
bitflags = "2.4.1"
12-
itertools = "0.12"
12+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1313
libc = "0.2"
1414
measureme = "11"
1515
object = { version = "0.32.0", default-features = false, features = ["std", "read"] }

compiler/rustc_codegen_ssa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ arrayvec = { version = "0.7", default-features = false }
1010
bitflags = "2.4.1"
1111
cc = "1.0.90"
1212
either = "1.5.0"
13-
itertools = "0.12"
13+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1414
jobserver = "0.1.28"
1515
pathdiff = "0.2.0"
1616
regex = "1.4"

compiler/rustc_hir_analysis/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ doctest = false
99

1010
[dependencies]
1111
# tidy-alphabetical-start
12-
itertools = "0.12"
12+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1313
rustc_arena = { path = "../rustc_arena" }
1414
rustc_ast = { path = "../rustc_ast" }
1515
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_hir_typeck/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.12"
8+
itertools = { git = "https://github.com/rust-itertools/itertools" }
99
rustc_ast = { path = "../rustc_ast" }
1010
rustc_ast_ir = { path = "../rustc_ast_ir" }
1111
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_mir_build/Cargo.toml

+1-1
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.12"
9+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1010
rustc_apfloat = "0.2.0"
1111
rustc_arena = { path = "../rustc_arena" }
1212
rustc_ast = { path = "../rustc_ast" }

compiler/rustc_mir_transform/Cargo.toml

+1-1
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.12"
9+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1010
rustc_arena = { path = "../rustc_arena" }
1111
rustc_ast = { path = "../rustc_ast" }
1212
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_trait_selection/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
# tidy-alphabetical-start
88
bitflags = "2.4.1"
99
derivative = "2.2.0"
10-
itertools = "0.12"
10+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1111
rustc_ast = { path = "../rustc_ast" }
1212
rustc_ast_ir = { path = "../rustc_ast_ir" }
1313
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_transmute/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ rustc = [
2929

3030
[dev-dependencies]
3131
# tidy-alphabetical-start
32-
itertools = "0.12"
32+
itertools = { git = "https://github.com/rust-itertools/itertools" }
3333
# tidy-alphabetical-end

compiler/rustc_ty_utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.12"
8+
itertools = { git = "https://github.com/rust-itertools/itertools" }
99
rustc_ast_ir = { path = "../rustc_ast_ir" }
1010
rustc_data_structures = { path = "../rustc_data_structures" }
1111
rustc_errors = { path = "../rustc_errors" }

src/librustdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "lib.rs"
1010
arrayvec = { version = "0.7", default-features = false }
1111
askama = { version = "0.12", default-features = false, features = ["config"] }
1212
base64 = "0.21.7"
13-
itertools = "0.12"
13+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1414
indexmap = "2"
1515
minifier = "0.3.0"
1616
regex = "1"

src/tools/clippy/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ toml = "0.7.3"
3636
walkdir = "2.3"
3737
# This is used by the `collect-metadata` alias.
3838
filetime = "0.2.9"
39-
itertools = "0.12"
39+
itertools = { git = "https://github.com/rust-itertools/itertools" }
4040

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

src/tools/clippy/clippy_dev/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
aho-corasick = "1.0"
99
clap = { version = "4.4", features = ["derive"] }
1010
indoc = "1.0"
11-
itertools = "0.12"
11+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1212
opener = "0.6"
1313
shell-escape = "0.1"
1414
walkdir = "2.3"

src/tools/clippy/clippy_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cargo_metadata = "0.18"
1414
clippy_config = { path = "../clippy_config" }
1515
clippy_utils = { path = "../clippy_utils" }
1616
declare_clippy_lint = { path = "../declare_clippy_lint" }
17-
itertools = "0.12"
17+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1818
quine-mc_cluskey = "0.2"
1919
regex-syntax = "0.8"
2020
serde = { version = "1.0", features = ["derive"] }

src/tools/clippy/clippy_utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77
[dependencies]
88
clippy_config = { path = "../clippy_config" }
99
arrayvec = { version = "0.7", default-features = false }
10-
itertools = "0.12"
10+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1111
rustc-semver = "1.1"
1212

1313
[features]

src/tools/clippy/declare_clippy_lint/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
proc-macro = true
99

1010
[dependencies]
11-
itertools = "0.12"
11+
itertools = { git = "https://github.com/rust-itertools/itertools" }
1212
quote = "1.0.21"
1313
syn = "2.0"
1414

0 commit comments

Comments
 (0)