]> git.lizzy.rs Git - rust.git/blob - crates/hir-expand/Cargo.toml
Enable extra warnings required by rust-lang/rust
[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.35"
15 either = "1.7.0"
16 rustc-hash = "1.1.0"
17 la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
18 itertools = "0.10.3"
19 hashbrown = { version = "0.12.1", features = [
20     "inline-more",
21 ], default-features = false }
22 smallvec = { version = "1.9.0", features = ["const_new"] }
23
24 stdx = { path = "../stdx", version = "0.0.0" }
25 base-db = { path = "../base-db", version = "0.0.0" }
26 cfg = { path = "../cfg", version = "0.0.0" }
27 syntax = { path = "../syntax", version = "0.0.0" }
28 profile = { path = "../profile", version = "0.0.0" }
29 tt = { path = "../tt", version = "0.0.0" }
30 mbe = { path = "../mbe", version = "0.0.0" }
31 limit = { path = "../limit", version = "0.0.0" }
32
33 [dev-dependencies]
34 expect-test = "1.4.0"