Skip to content

Commit d263d3a

Browse files
committed
Add either to [workspace.dependencies].
1 parent daf6fe2 commit d263d3a

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

Cargo.toml

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

compiler/rustc_borrowck/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-
either = "1.5.0"
8+
either.workspace = true
99
itertools.workspace = true
1010
polonius-engine = "0.13.0"
1111
rustc_abi = { path = "../rustc_abi" }

compiler/rustc_const_eval/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-
either = "1"
8+
either.workspace = true
99
rustc_abi = { path = "../rustc_abi" }
1010
rustc_apfloat = "0.2.0"
1111
rustc_ast = { path = "../rustc_ast" }

compiler/rustc_data_structures/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
arrayvec = { version = "0.7", default-features = false }
99
bitflags.workspace = true
10-
either = "1.0"
10+
either.workspace = true
1111
elsa = "1.11.0"
1212
ena = "0.14.3"
1313
indexmap = "2.4.0"

compiler/rustc_middle/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-
either = "1.5.0"
9+
either.workspace = true
1010
gsgdt = "0.1.2"
1111
polonius-engine = "0.13.0"
1212
rustc_abi = { path = "../rustc_abi" }

compiler/rustc_mir_transform/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-
either = "1"
8+
either.workspace = true
99
itertools.workspace = true
1010
rustc_abi = { path = "../rustc_abi" }
1111
rustc_arena = { path = "../rustc_arena" }

0 commit comments

Comments
 (0)