]> git.lizzy.rs Git - rust.git/blob - src/librustc_allocator/Cargo.toml
Rollup merge of #61409 - varkor:condition-trait-param-ice, r=oli-obk
[rust.git] / src / librustc_allocator / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_allocator"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 path = "lib.rs"
9 crate-type = ["dylib"]
10 test = false
11
12 [dependencies]
13 rustc = { path = "../librustc" }
14 rustc_data_structures = { path = "../librustc_data_structures" }
15 rustc_errors = { path = "../librustc_errors" }
16 rustc_target = { path = "../librustc_target" }
17 syntax = { path = "../libsyntax" }
18 syntax_pos = { path = "../libsyntax_pos" }
19 log = "0.4"
20 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }