diff options
author | Aleksey Kladov <[email protected]> | 2020-06-23 16:01:44 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-06-23 16:04:10 +0100 |
commit | 676e82bb833dcf0e34f8d12e9f8a870ac92beae3 (patch) | |
tree | 398a73948c3afcf4d4b4c93527c8af8566af34af /crates/test_utils | |
parent | 3e09dbba94de103d4d7a211ec578b049d0adc3c7 (diff) |
Remove relative-path dependency
Diffstat (limited to 'crates/test_utils')
-rw-r--r-- | crates/test_utils/Cargo.toml | 3 | ||||
-rw-r--r-- | crates/test_utils/src/lib.rs | 1 |
2 files changed, 1 insertions, 3 deletions
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 | |||
11 | difference = "2.0.0" | 11 | difference = "2.0.0" |
12 | text-size = "1.0.0" | 12 | text-size = "1.0.0" |
13 | serde_json = "1.0.48" | 13 | serde_json = "1.0.48" |
14 | relative-path = "1.0.0" | ||
15 | rustc-hash = "1.1.0" | 14 | rustc-hash = "1.1.0" |
16 | 15 | ||
17 | ra_cfg = { path = "../ra_cfg" } | 16 | ra_cfg = { path = "../ra_cfg" } |
18 | stdx = { path = "../stdx" } \ No newline at end of file | 17 | stdx = { 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; | |||
19 | use text_size::{TextRange, TextSize}; | 19 | use text_size::{TextRange, TextSize}; |
20 | 20 | ||
21 | pub use ra_cfg::CfgOptions; | 21 | pub use ra_cfg::CfgOptions; |
22 | pub use relative_path::{RelativePath, RelativePathBuf}; | ||
23 | pub use rustc_hash::FxHashMap; | 22 | pub use rustc_hash::FxHashMap; |
24 | 23 | ||
25 | pub use difference::Changeset as __Changeset; | 24 | pub use difference::Changeset as __Changeset; |