rust-analyzer/crates/project_model/Cargo.toml

26 lines
570 B
TOML
Raw Normal View History

[package]
name = "project_model"
version = "0.0.0"
2020-07-14 01:57:26 +00:00
license = "MIT OR Apache-2.0"
authors = ["rust-analyzer developers"]
edition = "2018"
2019-11-17 15:35:05 +00:00
[lib]
doctest = false
[dependencies]
2020-02-18 13:57:41 +00:00
log = "0.4.8"
rustc-hash = "1.1.0"
2020-07-29 21:06:56 +00:00
cargo_metadata = "0.11.1"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.48"
anyhow = "1.0.26"
2020-08-12 14:22:05 +00:00
arena = { path = "../arena" }
2020-08-13 08:19:09 +00:00
cfg = { path = "../cfg" }
2020-08-13 14:25:38 +00:00
base_db = { path = "../base_db" }
2020-08-12 14:52:28 +00:00
toolchain = { path = "../toolchain" }
2020-08-13 10:07:28 +00:00
proc_macro_api = { path = "../proc_macro_api" }
paths = { path = "../paths" }
2020-06-24 13:52:07 +00:00
stdx = { path = "../stdx" }