rust/crates/project_model/Cargo.toml

29 lines
740 B
TOML
Raw Normal View History

[package]
name = "project_model"
version = "0.0.0"
description = "TBD"
2020-07-13 20:57:26 -05:00
license = "MIT OR Apache-2.0"
2021-10-21 10:49:28 -05:00
edition = "2021"
2021-10-23 07:07:11 -05:00
rust-version = "1.56"
2019-11-17 09:35:05 -06:00
[lib]
doctest = false
[dependencies]
2021-08-15 07:46:13 -05:00
tracing = "0.1"
2020-02-18 07:57:41 -06:00
rustc-hash = "1.1.0"
cargo_metadata = "0.14"
semver = "1"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.48"
anyhow = "1.0.26"
2021-10-09 09:17:16 -05:00
expect-test = "1.2.0-pre.1"
2021-10-04 22:10:25 -05:00
la-arena = { version = "0.3.0", path = "../../lib/arena" }
2020-08-24 03:25:19 -05:00
cfg = { path = "../cfg", version = "0.0.0" }
base_db = { path = "../base_db", version = "0.0.0" }
toolchain = { path = "../toolchain", version = "0.0.0" }
2021-03-02 06:27:29 -06:00
paths = { path = "../paths", version = "0.0.0" }
stdx = { path = "../stdx", version = "0.0.0" }
profile = { path = "../profile", version = "0.0.0" }