mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 04:23:25 +00:00
Remove relative-path dependency
This commit is contained in:
parent
3e09dbba94
commit
676e82bb83
4 changed files with 1 additions and 6 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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" }
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue