blob: 30a0749c7e62def0958e88a0f09eb2164b3fb34d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
edition = "2018"
name = "ra_batch"
version = "0.1.0"
authors = ["Aleksey Kladov <[email protected]>"]
[dependencies]
log = "0.4.5"
rustc-hash = "1.0"
failure = "0.1.4"
ra_syntax = { path = "../ra_syntax" }
ra_db = { path = "../ra_db" }
ra_hir = { path = "../ra_hir" }
ra_vfs = { path = "../ra_vfs" }
ra_project_model = { path = "../ra_project_model" }
[dev-dependencies]
test_utils = { path = "../test_utils" }
|