aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--crates/rust-analyzer/Cargo.toml1
-rw-r--r--crates/test_utils/Cargo.toml3
-rw-r--r--crates/test_utils/src/lib.rs1
4 files changed, 1 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d909bc3d5..c91236fc6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1407,7 +1407,6 @@ dependencies = [
1407 "ra_tt", 1407 "ra_tt",
1408 "ra_vfs", 1408 "ra_vfs",
1409 "rand", 1409 "rand",
1410 "relative-path",
1411 "rustc-hash", 1410 "rustc-hash",
1412 "serde", 1411 "serde",
1413 "serde_json", 1412 "serde_json",
@@ -1677,7 +1676,6 @@ version = "0.1.0"
1677dependencies = [ 1676dependencies = [
1678 "difference", 1677 "difference",
1679 "ra_cfg", 1678 "ra_cfg",
1680 "relative-path",
1681 "rustc-hash", 1679 "rustc-hash",
1682 "serde_json", 1680 "serde_json",
1683 "stdx", 1681 "stdx",
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml
index 2b46e8905..f289a02f6 100644
--- a/crates/rust-analyzer/Cargo.toml
+++ b/crates/rust-analyzer/Cargo.toml
@@ -24,7 +24,6 @@ lsp-types = { version = "0.74.0", features = ["proposed"] }
24parking_lot = "0.10.0" 24parking_lot = "0.10.0"
25pico-args = "0.3.1" 25pico-args = "0.3.1"
26rand = { version = "0.7.3", features = ["small_rng"] } 26rand = { version = "0.7.3", features = ["small_rng"] }
27relative-path = "1.0.0"
28rustc-hash = "1.1.0" 27rustc-hash = "1.1.0"
29serde = { version = "1.0.106", features = ["derive"] } 28serde = { version = "1.0.106", features = ["derive"] }
30serde_json = "1.0.48" 29serde_json = "1.0.48"
diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml
index 8840bf36a..afd2005f8 100644
--- a/crates/test_utils/Cargo.toml
+++ b/crates/test_utils/Cargo.toml
@@ -11,8 +11,7 @@ doctest = false
11difference = "2.0.0" 11difference = "2.0.0"
12text-size = "1.0.0" 12text-size = "1.0.0"
13serde_json = "1.0.48" 13serde_json = "1.0.48"
14relative-path = "1.0.0"
15rustc-hash = "1.1.0" 14rustc-hash = "1.1.0"
16 15
17ra_cfg = { path = "../ra_cfg" } 16ra_cfg = { path = "../ra_cfg" }
18stdx = { path = "../stdx" } \ No newline at end of file 17stdx = { path = "../stdx" }
diff --git a/crates/test_utils/src/lib.rs b/crates/test_utils/src/lib.rs
index b1333cf15..fd917e43b 100644
--- a/crates/test_utils/src/lib.rs
+++ b/crates/test_utils/src/lib.rs
@@ -19,7 +19,6 @@ use stdx::split1;
19use text_size::{TextRange, TextSize}; 19use text_size::{TextRange, TextSize};
20 20
21pub use ra_cfg::CfgOptions; 21pub use ra_cfg::CfgOptions;
22pub use relative_path::{RelativePath, RelativePathBuf};
23pub use rustc_hash::FxHashMap; 22pub use rustc_hash::FxHashMap;
24 23
25pub use difference::Changeset as __Changeset; 24pub use difference::Changeset as __Changeset;