aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-06-23 16:04:42 +0100
committerGitHub <[email protected]>2020-06-23 16:04:42 +0100
commit7aa66371ee3e8b31217513204c8b4f683584419d (patch)
tree8eddadb25cefa6ec8e6b552d07d6697cbaf8dce2 /crates
parentc0b9ae55034fd29a86f52822634fcb1c1303e7f9 (diff)
parent676e82bb833dcf0e34f8d12e9f8a870ac92beae3 (diff)
Merge #5010
5010: Remove relative-path dependency r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates')
-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
3 files changed, 1 insertions, 4 deletions
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;