]> git.lizzy.rs Git - rust.git/blob - crates/hir_expand/Cargo.toml
internal: Split unresolve proc-macro error out of mbe
[rust.git] / crates / hir_expand / Cargo.toml
1 [package]
2 name = "hir_expand"
3 version = "0.0.0"
4 description = "TBD"
5 license = "MIT OR Apache-2.0"
6 edition = "2021"
7 rust-version = "1.57"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 cov-mark = "2.0.0-pre.1"
14 tracing = "0.1"
15 either = "1.5.3"
16 rustc-hash = "1.0.0"
17 la-arena = { version = "0.3.0", path = "../../lib/arena" }
18 itertools = "0.10.0"
19 hashbrown = { version = "0.12", features = [
20     "inline-more",
21 ], default-features = false }
22
23 base_db = { path = "../base_db", version = "0.0.0" }
24 cfg = { path = "../cfg", version = "0.0.0" }
25 syntax = { path = "../syntax", version = "0.0.0" }
26 profile = { path = "../profile", version = "0.0.0" }
27 tt = { path = "../tt", version = "0.0.0" }
28 mbe = { path = "../mbe", version = "0.0.0" }
29 limit = { path = "../limit", version = "0.0.0" }
30
31 [dev-dependencies]
32 expect-test = "1.2.0-pre.1"