Remove relative-path dependency

This commit is contained in:
Aleksey Kladov 2020-06-23 17:01:44 +02:00
parent 3e09dbba94
commit 676e82bb83
4 changed files with 1 additions and 6 deletions

2
Cargo.lock generated
View file

@ -1407,7 +1407,6 @@ dependencies = [
"ra_tt",
"ra_vfs",
"rand",
"relative-path",
"rustc-hash",
"serde",
"serde_json",
@ -1677,7 +1676,6 @@ version = "0.1.0"
dependencies = [
"difference",
"ra_cfg",
"relative-path",
"rustc-hash",
"serde_json",
"stdx",

View file

@ -24,7 +24,6 @@ lsp-types = { version = "0.74.0", features = ["proposed"] }
parking_lot = "0.10.0"
pico-args = "0.3.1"
rand = { version = "0.7.3", features = ["small_rng"] }
relative-path = "1.0.0"
rustc-hash = "1.1.0"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.48"

View file

@ -11,8 +11,7 @@ doctest = false
difference = "2.0.0"
text-size = "1.0.0"
serde_json = "1.0.48"
relative-path = "1.0.0"
rustc-hash = "1.1.0"
ra_cfg = { path = "../ra_cfg" }
stdx = { path = "../stdx" }
stdx = { path = "../stdx" }

View file

@ -19,7 +19,6 @@ use stdx::split1;
use text_size::{TextRange, TextSize};
pub use ra_cfg::CfgOptions;
pub use relative_path::{RelativePath, RelativePathBuf};
pub use rustc_hash::FxHashMap;
pub use difference::Changeset as __Changeset;