rust-analyzer/crates/project-model/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
775 B
TOML
Raw Normal View History

[package]
2022-04-29 14:29:24 +00:00
name = "project-model"
version = "0.0.0"
description = "TBD"
2020-07-14 01:57:26 +00:00
license = "MIT OR Apache-2.0"
2021-10-21 15:49:28 +00:00
edition = "2021"
rust-version.workspace = true
2019-11-17 15:35:05 +00:00
[lib]
doctest = false
[dependencies]
2022-06-10 14:30:09 +00:00
tracing = "0.1.35"
2020-02-18 13:57:41 +00:00
rustc-hash = "1.1.0"
2022-07-03 07:08:10 +00:00
cargo_metadata = "0.15.0"
semver = "1.0.14"
2022-06-10 14:30:09 +00:00
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.86"
anyhow = "1.0.62"
2022-05-14 10:33:48 +00:00
la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
2020-08-24 08:25:19 +00:00
cfg = { path = "../cfg", version = "0.0.0" }
2022-04-29 14:29:24 +00:00
base-db = { path = "../base-db", version = "0.0.0" }
2020-08-24 08:25:19 +00:00
toolchain = { path = "../toolchain", version = "0.0.0" }
2021-03-02 12:27:29 +00:00
paths = { path = "../paths", version = "0.0.0" }
stdx = { path = "../stdx", version = "0.0.0" }
profile = { path = "../profile", version = "0.0.0" }
2022-10-19 19:17:11 +00:00
[dev-dependencies]
expect-test = "1.4.0"