]> git.lizzy.rs Git - rust.git/blob - src/librustc_parse/Cargo.toml
Rollup merge of #68758 - daboross:fix-59191, r=petrochenkov
[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_ast_pretty = { path = "../librustc_ast_pretty" }
16 rustc_attr = { path = "../librustc_attr" }
17 rustc_data_structures = { path = "../librustc_data_structures" }
18 rustc_feature = { path = "../librustc_feature" }
19 rustc_lexer = { path = "../librustc_lexer" }
20 rustc_errors = { path = "../librustc_errors" }
21 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
22 rustc_session = { path = "../librustc_session" }
23 rustc_span = { path = "../librustc_span" }
24 syntax = { path = "../libsyntax" }
25 unicode-normalization = "0.1.11"