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