aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_project_model/Cargo.toml
blob: f65aabad79c2c382a5f881f06228a51b5e423549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
edition = "2018"
name = "ra_project_model"
version = "0.1.0"
authors = ["Aleksey Kladov <[email protected]>"]

[dependencies]
# itertools = "0.8.0"
# join_to_string = "0.1.3"
log = "0.4.5"
# relative-path = "0.4.0"
# rayon = "1.0.2"
# fst = "0.3.1"
rustc-hash = "1.0"
# parking_lot = "0.7.0"
# unicase = "2.2.0"

# TODO get rid of these?
failure = "0.1.4"
failure_derive = "0.1.4"

smol_str = { version = "0.1.9", features = ["serde"] }
walkdir = "2.2.7"

cargo_metadata = "0.7.0"

ra_arena = { path = "../ra_arena" }
ra_db = { path = "../ra_db" }
ra_vfs = { path = "../ra_vfs" }

[dev-dependencies]
test_utils = { path = "../test_utils" }