]> git.lizzy.rs Git - rust.git/blob - src/librustc_hir/Cargo.toml
Rollup merge of #72382 - tmiasko:config-toml-debug-assertions, r=nikomatsakis
[rust.git] / src / librustc_hir / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_hir"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_hir"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 rustc_target = { path = "../librustc_target" }
14 rustc_macros = { path = "../librustc_macros" }
15 rustc_data_structures = { path = "../librustc_data_structures" }
16 rustc_index = { path = "../librustc_index" }
17 rustc_span = { path = "../librustc_span" }
18 rustc_serialize = { path = "../libserialize", package = "serialize" }
19 rustc_ast = { path = "../librustc_ast" }
20 lazy_static = "1"
21 log = { version = "0.4", features = ["release_max_level_info", "std"] }
22 smallvec = { version = "1.0", features = ["union", "may_dangle"] }