]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_ast_lowering/Cargo.toml
Rollup merge of #107700 - jyn514:tools-builder, r=Mark-Simulacrum
[rust.git] / compiler / rustc_ast_lowering / Cargo.toml
1 [package]
2 name = "rustc_ast_lowering"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7 doctest = false
8
9 [dependencies]
10 rustc_ast = { path = "../rustc_ast" }
11 rustc_ast_pretty = { path = "../rustc_ast_pretty" }
12 rustc_data_structures = { path = "../rustc_data_structures" }
13 rustc_errors = { path = "../rustc_errors" }
14 rustc_hir = { path = "../rustc_hir" }
15 rustc_index = { path = "../rustc_index" }
16 rustc_middle = { path = "../rustc_middle" }
17 rustc_macros = { path = "../rustc_macros" }
18 rustc_session = { path = "../rustc_session" }
19 rustc_span = { path = "../rustc_span" }
20 rustc_target = { path = "../rustc_target" }
21 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
22 thin-vec = "0.2.9"
23 tracing = "0.1"