mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
7c40661ddb
This pulls in https://github.com/servo/rust-smallvec/pull/282, which gives some small wins for rustc.
24 lines
745 B
TOML
24 lines
745 B
TOML
[package]
|
|
name = "rustc_ast_lowering"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
rustc_arena = { path = "../rustc_arena" }
|
|
tracing = "0.1"
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
rustc_target = { path = "../rustc_target" }
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
rustc_index = { path = "../rustc_index" }
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
rustc_query_system = { path = "../rustc_query_system" }
|
|
rustc_span = { path = "../rustc_span" }
|
|
rustc_errors = { path = "../rustc_errors" }
|
|
rustc_session = { path = "../rustc_session" }
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|