]> git.proxmox.com Git - rustc.git/blame - src/librustc_ast_lowering/Cargo.toml
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_ast_lowering / Cargo.toml
CommitLineData
dfeec247
XL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_ast_lowering"
4version = "0.0.0"
5edition = "2018"
6
7[lib]
8name = "rustc_ast_lowering"
9path = "lib.rs"
10doctest = false
11
12[dependencies]
f035d41b 13rustc_arena = { path = "../librustc_arena" }
3dfed10e 14tracing = "0.1"
74b04a01 15rustc_ast_pretty = { path = "../librustc_ast_pretty" }
dfeec247
XL
16rustc_hir = { path = "../librustc_hir" }
17rustc_target = { path = "../librustc_target" }
18rustc_data_structures = { path = "../librustc_data_structures" }
19rustc_index = { path = "../librustc_index" }
20rustc_span = { path = "../librustc_span" }
21rustc_errors = { path = "../librustc_errors" }
22rustc_session = { path = "../librustc_session" }
74b04a01 23rustc_ast = { path = "../librustc_ast" }
dfeec247 24smallvec = { version = "1.0", features = ["union", "may_dangle"] }