Skip to content

Commit 77b047a

Browse files
committed
Add indexmap to [workspace.dependencies].
1 parent 77d2f0c commit 77b047a

File tree

8 files changed

+8
-7
lines changed

8 files changed

+8
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ exclude = [
6363
# tidy-alphabetical-start
6464
bitflags = "2.9.3"
6565
either = "1.15.0"
66+
indexmap = "2.10.0"
6667
itertools = "0.12.1"
6768
# FIXME: Remove this pin once this rustix issue is resolved
6869
# https://github.com/bytecodealliance/rustix/issues/1496

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.workspace = true
1010
either.workspace = true
1111
elsa = "1.11.0"
1212
ena = "0.14.3"
13-
indexmap = "2.4.0"
13+
indexmap.workspace = true
1414
jobserver_crate = { version = "0.1.28", package = "jobserver" }
1515
measureme = "12.0.1"
1616
parking_lot = "0.12"

compiler/rustc_resolve/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2024"
66
[dependencies]
77
# tidy-alphabetical-start
88
bitflags.workspace = true
9-
indexmap = "2.4.0"
9+
indexmap.workspace = true
1010
itertools.workspace = true
1111
pulldown-cmark = { version = "0.11", features = ["html"], default-features = false }
1212
rustc_arena = { path = "../rustc_arena" }

compiler/rustc_serialize/Cargo.toml

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

66
[dependencies]
77
# tidy-alphabetical-start
8-
indexmap = "2.0.0"
8+
indexmap.workspace = true
99
rustc_hashes = { path = "../rustc_hashes" }
1010
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
1111
thin-vec.workspace = true

compiler/rustc_span/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2024"
77
# tidy-alphabetical-start
88
blake3 = "1.5.2"
99
derive-where = "1.2.7"
10-
indexmap = { version = "2.0.0" }
10+
indexmap.workspace = true
1111
itoa = "1.0"
1212
md5 = { package = "md-5", version = "0.10.0" }
1313
rustc_arena = { path = "../rustc_arena" }

compiler/rustc_type_ir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2024"
88
bitflags.workspace = true
99
derive-where = "1.2.7"
1010
ena = "0.14.3"
11-
indexmap = "2.0.0"
11+
indexmap.workspace = true
1212
rustc-hash = "2.0.0"
1313
rustc_ast_ir = { path = "../rustc_ast_ir", default-features = false }
1414
rustc_data_structures = { path = "../rustc_data_structures", optional = true }

src/librustdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ path = "lib.rs"
1212
arrayvec = { version = "0.7", default-features = false }
1313
askama = { version = "0.14", default-features = false, features = ["alloc", "config", "derive"] }
1414
base64 = "0.21.7"
15-
indexmap = "2"
15+
indexmap.workspace = true
1616
itertools.workspace = true
1717
minifier = { version = "0.3.5", default-features = false }
1818
pulldown-cmark-escape = { version = "0.11.0", features = ["simd"] }

src/tools/compiletest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ diff = "0.1.10"
2020
getopts = "0.2"
2121
glob = "0.3.0"
2222
home = "0.5.5"
23-
indexmap = "2.0.0"
23+
indexmap.workspace = true
2424
miropt-test-tools = { path = "../miropt-test-tools" }
2525
rayon = "1.10.0"
2626
regex = "1.0"

0 commit comments

Comments
 (0)