Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/project-model/Cargo.toml')
| -rw-r--r-- | crates/project-model/Cargo.toml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/crates/project-model/Cargo.toml b/crates/project-model/Cargo.toml new file mode 100644 index 0000000000..8fafdb1850 --- /dev/null +++ b/crates/project-model/Cargo.toml @@ -0,0 +1,28 @@ +[package] +name = "project-model" +version = "0.0.0" +description = "TBD" +license = "MIT OR Apache-2.0" +edition = "2021" +rust-version = "1.57" + +[lib] +doctest = false + +[dependencies] +tracing = "0.1.32" +rustc-hash = "1.1.0" +cargo_metadata = "0.14.2" +semver = "1.0.6" +serde = { version = "1.0.136", features = ["derive"] } +serde_json = "1.0.79" +anyhow = "1.0.56" +expect-test = "1.2.2" +la-arena = { version = "0.3.0", path = "../../lib/arena" } + +cfg = { path = "../cfg", version = "0.0.0" } +base-db = { path = "../base-db", version = "0.0.0" } +toolchain = { path = "../toolchain", version = "0.0.0" } +paths = { path = "../paths", version = "0.0.0" } +stdx = { path = "../stdx", version = "0.0.0" } +profile = { path = "../profile", version = "0.0.0" } |