rust/crates/ra_project_model/Cargo.toml
David Wood 00d927a188
Initial implementation of project-lock.json.
This commit adds a initial implementation of project-lock.json, a build
system agnostic method of specifying the crate graph and roots.
2019-03-07 01:05:03 +01:00

24 lines
390 B
TOML

[package]
edition = "2018"
name = "ra_project_model"
version = "0.1.0"
authors = ["rust-analyzer developers"]
[dependencies]
log = "0.4.5"
rustc-hash = "1.0"
failure = "0.1.4"
walkdir = "2.2.7"
cargo_metadata = "0.7.0"
ra_arena = { path = "../ra_arena" }
ra_db = { path = "../ra_db" }
serde = "1.0.89"
serde_json = "1.0.39"
[dev-dependencies]
test_utils = { path = "../test_utils" }