rust/compiler/rustc_parse/Cargo.toml

22 lines
565 B
TOML
Raw Normal View History

2020-08-28 05:58:48 +02:00
[package]
name = "rustc_parse"
version = "0.0.0"
2021-09-19 18:49:55 +02:00
edition = "2021"
2020-08-28 05:58:48 +02:00
[lib]
doctest = false
[dependencies]
bitflags = "1.0"
tracing = "0.1"
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
rustc_data_structures = { path = "../rustc_data_structures" }
rustc_feature = { path = "../rustc_feature" }
rustc_lexer = { path = "../rustc_lexer" }
rustc_errors = { path = "../rustc_errors" }
rustc_session = { path = "../rustc_session" }
rustc_span = { path = "../rustc_span" }
rustc_ast = { path = "../rustc_ast" }
unicode-normalization = "0.1.11"
unicode-width = "0.1.4"