881d71a489
I don't think there's anything wrong with project_model depending on proc_macro_api directly -- fundamentally, both are about gluing our pure data model to the messy outside world. However, it's easy enough to avoid the dependency, so why not. As an additional consideration, `proc_macro_api` now pulls in `base_db`. project_model should definitely not depend on that!
28 lines
706 B
TOML
28 lines
706 B
TOML
[package]
|
|
name = "project_model"
|
|
version = "0.0.0"
|
|
description = "TBD"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
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"
|
|
expect-test = "1"
|
|
la-arena = { version = "0.2.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" }
|