mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +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_tt",
|
||||||
"ra_vfs",
|
"ra_vfs",
|
||||||
"rand",
|
"rand",
|
||||||
"relative-path",
|
|
||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
|
@ -1677,7 +1676,6 @@ version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"difference",
|
"difference",
|
||||||
"ra_cfg",
|
"ra_cfg",
|
||||||
"relative-path",
|
|
||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"stdx",
|
"stdx",
|
||||||
|
|
|
@ -24,7 +24,6 @@ lsp-types = { version = "0.74.0", features = ["proposed"] }
|
||||||
parking_lot = "0.10.0"
|
parking_lot = "0.10.0"
|
||||||
pico-args = "0.3.1"
|
pico-args = "0.3.1"
|
||||||
rand = { version = "0.7.3", features = ["small_rng"] }
|
rand = { version = "0.7.3", features = ["small_rng"] }
|
||||||
relative-path = "1.0.0"
|
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
serde = { version = "1.0.106", features = ["derive"] }
|
serde = { version = "1.0.106", features = ["derive"] }
|
||||||
serde_json = "1.0.48"
|
serde_json = "1.0.48"
|
||||||
|
|
|
@ -11,7 +11,6 @@ doctest = false
|
||||||
difference = "2.0.0"
|
difference = "2.0.0"
|
||||||
text-size = "1.0.0"
|
text-size = "1.0.0"
|
||||||
serde_json = "1.0.48"
|
serde_json = "1.0.48"
|
||||||
relative-path = "1.0.0"
|
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
|
|
||||||
ra_cfg = { path = "../ra_cfg" }
|
ra_cfg = { path = "../ra_cfg" }
|
||||||
|
|
|
@ -19,7 +19,6 @@ use stdx::split1;
|
||||||
use text_size::{TextRange, TextSize};
|
use text_size::{TextRange, TextSize};
|
||||||
|
|
||||||
pub use ra_cfg::CfgOptions;
|
pub use ra_cfg::CfgOptions;
|
||||||
pub use relative_path::{RelativePath, RelativePathBuf};
|
|
||||||
pub use rustc_hash::FxHashMap;
|
pub use rustc_hash::FxHashMap;
|
||||||
|
|
||||||
pub use difference::Changeset as __Changeset;
|
pub use difference::Changeset as __Changeset;
|
||||||
|
|
Loading…
Reference in a new issue