]> git.proxmox.com Git - rustc.git/blame - src/librustc_parse/Cargo.toml
New upstream version 1.44.1+dfsg1
[rustc.git] / src / librustc_parse / Cargo.toml
CommitLineData
60c5eb7d
XL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_parse"
4version = "0.0.0"
5edition = "2018"
6
7[lib]
8name = "rustc_parse"
9path = "lib.rs"
10doctest = false
11
12[dependencies]
13bitflags = "1.0"
14log = "0.4"
74b04a01 15rustc_ast_pretty = { path = "../librustc_ast_pretty" }
60c5eb7d
XL
16rustc_data_structures = { path = "../librustc_data_structures" }
17rustc_feature = { path = "../librustc_feature" }
18rustc_lexer = { path = "../librustc_lexer" }
19rustc_errors = { path = "../librustc_errors" }
60c5eb7d 20smallvec = { version = "1.0", features = ["union", "may_dangle"] }
dfeec247
XL
21rustc_session = { path = "../librustc_session" }
22rustc_span = { path = "../librustc_span" }
74b04a01 23rustc_ast = { path = "../librustc_ast" }
dfeec247 24unicode-normalization = "0.1.11"