Unnamed repository; edit this file 'description' to name the repository.
Drop rustc_hashes dependency
Laurențiu Nicola 2025-03-24
parent 37acea8 · commit 7af69a1
-rw-r--r--Cargo.toml1
-rw-r--r--crates/hir-def/src/lib.rs3
2 files changed, 0 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 03ecc8f274..416269a967 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -85,7 +85,6 @@ vfs-notify = { path = "./crates/vfs-notify", version = "0.0.0" }
vfs = { path = "./crates/vfs", version = "0.0.0" }
edition = { path = "./crates/edition", version = "0.0.0" }
-ra-ap-rustc_hashes = { version = "0.100", default-features = false }
ra-ap-rustc_lexer = { version = "0.100", default-features = false }
ra-ap-rustc_parse_format = { version = "0.100", default-features = false }
ra-ap-rustc_index = { version = "0.100", default-features = false }
diff --git a/crates/hir-def/src/lib.rs b/crates/hir-def/src/lib.rs
index fad0b56f33..4601960c7e 100644
--- a/crates/hir-def/src/lib.rs
+++ b/crates/hir-def/src/lib.rs
@@ -18,9 +18,6 @@ extern crate ra_ap_rustc_parse_format as rustc_parse_format;
#[cfg(feature = "in-rust-tree")]
extern crate rustc_abi;
-#[cfg(feature = "in-rust-tree")]
-extern crate rustc_hashes;
-
#[cfg(not(feature = "in-rust-tree"))]
extern crate ra_ap_rustc_abi as rustc_abi;