diff options
Diffstat (limited to 'crates/ra_batch/Cargo.toml')
-rw-r--r-- | crates/ra_batch/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/ra_batch/Cargo.toml b/crates/ra_batch/Cargo.toml new file mode 100644 index 000000000..30a0749c7 --- /dev/null +++ b/crates/ra_batch/Cargo.toml | |||
@@ -0,0 +1,20 @@ | |||
1 | [package] | ||
2 | edition = "2018" | ||
3 | name = "ra_batch" | ||
4 | version = "0.1.0" | ||
5 | authors = ["Aleksey Kladov <[email protected]>"] | ||
6 | |||
7 | [dependencies] | ||
8 | log = "0.4.5" | ||
9 | rustc-hash = "1.0" | ||
10 | |||
11 | failure = "0.1.4" | ||
12 | |||
13 | ra_syntax = { path = "../ra_syntax" } | ||
14 | ra_db = { path = "../ra_db" } | ||
15 | ra_hir = { path = "../ra_hir" } | ||
16 | ra_vfs = { path = "../ra_vfs" } | ||
17 | ra_project_model = { path = "../ra_project_model" } | ||
18 | |||
19 | [dev-dependencies] | ||
20 | test_utils = { path = "../test_utils" } | ||