diff options
Diffstat (limited to 'crates/ra_db/Cargo.toml')
-rw-r--r-- | crates/ra_db/Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/crates/ra_db/Cargo.toml b/crates/ra_db/Cargo.toml new file mode 100644 index 000000000..f316c0ab2 --- /dev/null +++ b/crates/ra_db/Cargo.toml | |||
@@ -0,0 +1,14 @@ | |||
1 | [package] | ||
2 | edition = "2018" | ||
3 | name = "ra_db" | ||
4 | version = "0.1.0" | ||
5 | authors = ["Aleksey Kladov <[email protected]>"] | ||
6 | |||
7 | [dependencies] | ||
8 | relative-path = "0.4.0" | ||
9 | salsa = "0.8.0" | ||
10 | rustc-hash = "1.0" | ||
11 | parking_lot = "0.6.4" | ||
12 | ra_syntax = { path = "../ra_syntax" } | ||
13 | ra_editor = { path = "../ra_editor" } | ||
14 | test_utils = { path = "../test_utils" } | ||