aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorShotaro Yamada <[email protected]>2019-10-11 23:48:23 +0100
committerShotaro Yamada <[email protected]>2019-10-11 23:48:23 +0100
commit8c72c00abdbf9efe54b0d84d7a9d24b01ae6762a (patch)
treef6f50ad570d848e24641af6a1ea9ff30ba36cd74 /crates
parent0896ca04c4e6f88ae268a39472570df4b6d360b0 (diff)
Remove smol_str dependency from ra_syntax
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_syntax/Cargo.toml4
-rw-r--r--crates/ra_tt/Cargo.toml4
2 files changed, 3 insertions, 5 deletions
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml
index 9bc85404a..b2d87ba03 100644
--- a/crates/ra_syntax/Cargo.toml
+++ b/crates/ra_syntax/Cargo.toml
@@ -15,10 +15,6 @@ rustc-hash = "1.0.1"
15arrayvec = "0.4.10" 15arrayvec = "0.4.10"
16once_cell = "1.2.0" 16once_cell = "1.2.0"
17 17
18# ideally, `serde` should be enabled by `ra_lsp_server`, but we enable it here
19# to reduce number of compilations
20smol_str = { version = "0.1.12", features = ["serde"] }
21
22ra_text_edit = { path = "../ra_text_edit" } 18ra_text_edit = { path = "../ra_text_edit" }
23ra_parser = { path = "../ra_parser" } 19ra_parser = { path = "../ra_parser" }
24 20
diff --git a/crates/ra_tt/Cargo.toml b/crates/ra_tt/Cargo.toml
index 3328d312f..3fcc7f085 100644
--- a/crates/ra_tt/Cargo.toml
+++ b/crates/ra_tt/Cargo.toml
@@ -5,4 +5,6 @@ version = "0.1.0"
5authors = ["rust-analyzer developers"] 5authors = ["rust-analyzer developers"]
6 6
7[dependencies] 7[dependencies]
8smol_str = "0.1.9" 8# ideally, `serde` should be enabled by `ra_lsp_server`, but we enable it here
9# to reduce number of compilations
10smol_str = { version = "0.1.12", features = ["serde"] }