]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_parse/Cargo.toml
New upstream version 1.62.1+dfsg1
[rustc.git] / compiler / rustc_parse / Cargo.toml
CommitLineData
1b1a35ee 1[package]
1b1a35ee
XL
2name = "rustc_parse"
3version = "0.0.0"
c295e0f8 4edition = "2021"
1b1a35ee
XL
5
6[lib]
7doctest = false
8
9[dependencies]
10bitflags = "1.0"
11tracing = "0.1"
12rustc_ast_pretty = { path = "../rustc_ast_pretty" }
13rustc_data_structures = { path = "../rustc_data_structures" }
14rustc_feature = { path = "../rustc_feature" }
15rustc_lexer = { path = "../rustc_lexer" }
04454e1e 16rustc_macros = { path = "../rustc_macros" }
1b1a35ee
XL
17rustc_errors = { path = "../rustc_errors" }
18rustc_session = { path = "../rustc_session" }
19rustc_span = { path = "../rustc_span" }
20rustc_ast = { path = "../rustc_ast" }
21unicode-normalization = "0.1.11"
c295e0f8 22unicode-width = "0.1.4"