]> git.lizzy.rs Git - rust.git/blob - src/librustc_parse/Cargo.toml
Make drop-glue take advantage of -Zshare-generics.
[rust.git] / src / librustc_parse / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_parse"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_parse"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 bitflags = "1.0"
14 log = "0.4"
15 rustc_data_structures = { path = "../librustc_data_structures" }
16 rustc_feature = { path = "../librustc_feature" }
17 rustc_lexer = { path = "../librustc_lexer" }
18 rustc_errors = { path = "../librustc_errors" }
19 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
20 rustc_session = { path = "../librustc_session" }
21 rustc_span = { path = "../librustc_span" }
22 syntax = { path = "../libsyntax" }
23 unicode-normalization = "0.1.11"