Skip to content

Commit 042debb

Browse files
author
Tage Johansson
committed
in rustc_index: fix compilation error by changing the rustc_serialize dependency to be required instead of optional
1 parent f5f88ea commit 042debb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

compiler/rustc_index/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@ edition = "2024"
88
itertools = "0.12"
99
rustc_index_macros = { path = "../rustc_index_macros" }
1010
rustc_macros = { path = "../rustc_macros", optional = true }
11-
rustc_serialize = { path = "../rustc_serialize", optional = true }
11+
rustc_serialize = { path = "../rustc_serialize" }
1212
smallvec = "1.8.1"
1313
# tidy-alphabetical-end
1414

1515
[features]
1616
# tidy-alphabetical-start
1717
default = ["nightly"]
1818
nightly = [
19-
"dep:rustc_serialize",
2019
"dep:rustc_macros",
2120
"rustc_index_macros/nightly",
2221
]

0 commit comments

Comments
 (0)