]> git.lizzy.rs Git - rust.git/blob - crates/hir_expand/Cargo.toml
Merge #9807
[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 = "2018"
7
8 [lib]
9 doctest = false
10
11 [dependencies]
12 cov-mark = "2.0.0-pre.1"
13 log = "0.4.8"
14 either = "1.5.3"
15 rustc-hash = "1.0.0"
16 la-arena = { version = "0.2.0", path = "../../lib/arena" }
17
18 base_db = { path = "../base_db", version = "0.0.0" }
19 cfg = { path = "../cfg", version = "0.0.0" }
20 syntax = { path = "../syntax", version = "0.0.0" }
21 parser = { path = "../parser", version = "0.0.0" }
22 profile = { path = "../profile", version = "0.0.0" }
23 tt = { path = "../tt", version = "0.0.0" }
24 mbe = { path = "../mbe", version = "0.0.0" }
25 limit = { path = "../limit", version = "0.0.0" }
26
27 [dev-dependencies]
28 test_utils = { path = "../test_utils" }
29 expect-test = "1.1"