rust/compiler/rustc_ast/Cargo.toml

19 lines
487 B
TOML
Raw Normal View History

2020-08-28 05:58:48 +02:00
[package]
name = "rustc_ast"
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]
rustc_serialize = { path = "../rustc_serialize" }
tracing = "0.1"
rustc_span = { path = "../rustc_span" }
rustc_data_structures = { path = "../rustc_data_structures" }
rustc_index = { path = "../rustc_index" }
rustc_lexer = { path = "../rustc_lexer" }
rustc_macros = { path = "../rustc_macros" }
2021-02-14 15:37:30 +01:00
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
2020-08-28 05:58:48 +02:00
bitflags = "1.2.1"