]> git.lizzy.rs Git - rust.git/blob - src/librustc_ast_lowering/Cargo.toml
Rollup merge of #64069 - danielhenrymantilla:feature/cstring_from_vec_of_nonzerou8...
[rust.git] / src / librustc_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 name = "rustc_ast_lowering"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 log = { version = "0.4", features = ["release_max_level_info", "std"] }
14 rustc = { path = "../librustc" }
15 rustc_ast_pretty = { path = "../librustc_ast_pretty" }
16 rustc_hir = { path = "../librustc_hir" }
17 rustc_target = { path = "../librustc_target" }
18 rustc_data_structures = { path = "../librustc_data_structures" }
19 rustc_index = { path = "../librustc_index" }
20 rustc_span = { path = "../librustc_span" }
21 rustc_errors = { path = "../librustc_errors" }
22 rustc_session = { path = "../librustc_session" }
23 syntax = { path = "../libsyntax" }
24 smallvec = { version = "1.0", features = ["union", "may_dangle"] }