aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-10-02 15:14:56 +0100
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-10-02 15:14:56 +0100
commit7ffc114dab6d1e25ead195a5937cd4f9ca51ef2c (patch)
treee8bab3ea497a8e7207a24e481361bdd56ed81eaa /crates/ra_syntax/Cargo.toml
parentcd9c5f4ab205e092b87be6affe6d7e78d877dbf0 (diff)
parenta261a1836ba02a1c091c5165795dc165ca399a87 (diff)
Merge #85
85: start moving syntax tree to a separate crate r=matklad a=matklad WIP Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_syntax/Cargo.toml')
-rw-r--r--crates/ra_syntax/Cargo.toml3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml
index a0fd633e0..6345e4725 100644
--- a/crates/ra_syntax/Cargo.toml
+++ b/crates/ra_syntax/Cargo.toml
@@ -6,11 +6,10 @@ license = "MIT OR Apache-2.0"
6 6
7[dependencies] 7[dependencies]
8unicode-xid = "0.1.0" 8unicode-xid = "0.1.0"
9text_unit = "0.1.4"
10itertools = "0.7.8" 9itertools = "0.7.8"
11drop_bomb = "0.1.4" 10drop_bomb = "0.1.4"
12parking_lot = "0.6.0" 11parking_lot = "0.6.0"
13smol_str = "0.1.6" 12rowan = "0.1.0"
14 13
15[dev-dependencies] 14[dev-dependencies]
16test_utils = { path = "../test_utils" } 15test_utils = { path = "../test_utils" }