diff options
Diffstat (limited to 'crates/ra_syntax/Cargo.toml')
-rw-r--r-- | crates/ra_syntax/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml new file mode 100644 index 000000000..a0fd633e0 --- /dev/null +++ b/crates/ra_syntax/Cargo.toml | |||
@@ -0,0 +1,17 @@ | |||
1 | [package] | ||
2 | name = "ra_syntax" | ||
3 | version = "0.1.0" | ||
4 | authors = ["Aleksey Kladov <[email protected]>"] | ||
5 | license = "MIT OR Apache-2.0" | ||
6 | |||
7 | [dependencies] | ||
8 | unicode-xid = "0.1.0" | ||
9 | text_unit = "0.1.4" | ||
10 | itertools = "0.7.8" | ||
11 | drop_bomb = "0.1.4" | ||
12 | parking_lot = "0.6.0" | ||
13 | smol_str = "0.1.6" | ||
14 | |||
15 | [dev-dependencies] | ||
16 | test_utils = { path = "../test_utils" } | ||
17 | walkdir = "2.2.0" | ||