rust/crates/project-model/Cargo.toml

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

34 lines
656 B
TOML
Raw Normal View History

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