diff --git a/Cargo.toml b/Cargo.toml index 378aa5ada2f9..69d93b7985ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,6 +71,7 @@ itertools = "0.12.1" libc = "=0.2.174" measureme = "12.0.3" memchr = "2.7.5" +odht = { version = "0.3.1", features = ["nightly"] } proc-macro2 = "1.0.101" quote = "1.0.40" rustc-hash = "2.1.1" diff --git a/compiler/rustc_hir/Cargo.toml b/compiler/rustc_hir/Cargo.toml index ea72ed68c5ef..e74fcfe74559 100644 --- a/compiler/rustc_hir/Cargo.toml +++ b/compiler/rustc_hir/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" [dependencies] # tidy-alphabetical-start bitflags.workspace = true -odht = { version = "0.3.1", features = ["nightly"] } +odht.workspace = true rustc_abi = { path = "../rustc_abi" } rustc_arena = { path = "../rustc_arena" } rustc_ast = { path = "../rustc_ast" } diff --git a/compiler/rustc_metadata/Cargo.toml b/compiler/rustc_metadata/Cargo.toml index ce65a71acad1..a8f3dd18353c 100644 --- a/compiler/rustc_metadata/Cargo.toml +++ b/compiler/rustc_metadata/Cargo.toml @@ -7,7 +7,7 @@ edition = "2024" # tidy-alphabetical-start bitflags.workspace = true libloading = "0.8.0" -odht = { version = "0.3.1", features = ["nightly"] } +odht.workspace = true rustc_abi = { path = "../rustc_abi" } rustc_ast = { path = "../rustc_ast" } rustc_attr_parsing = { path = "../rustc_attr_parsing" }