]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_ast_lowering/Cargo.toml
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / compiler / rustc_ast_lowering / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_ast_lowering"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 doctest = false
9
10 [dependencies]
11 rustc_arena = { path = "../rustc_arena" }
12 tracing = "0.1"
13 rustc_ast_pretty = { path = "../rustc_ast_pretty" }
14 rustc_hir = { path = "../rustc_hir" }
15 rustc_target = { path = "../rustc_target" }
16 rustc_data_structures = { path = "../rustc_data_structures" }
17 rustc_index = { path = "../rustc_index" }
18 rustc_span = { path = "../rustc_span" }
19 rustc_errors = { path = "../rustc_errors" }
20 rustc_session = { path = "../rustc_session" }
21 rustc_ast = { path = "../rustc_ast" }
22 smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }