rust/compiler/rustc_hir/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
647 B
TOML
Raw Normal View History

2020-08-27 22:58:48 -05:00
[package]
name = "rustc_hir"
version = "0.0.0"
2021-09-19 11:49:55 -05:00
edition = "2021"
2020-08-27 22:58:48 -05:00
[lib]
[dependencies]
2021-07-13 11:45:20 -05:00
rustc_arena = { path = "../rustc_arena" }
2020-08-27 22:58:48 -05:00
rustc_target = { path = "../rustc_target" }
rustc_macros = { path = "../rustc_macros" }
rustc_data_structures = { path = "../rustc_data_structures" }
rustc_error_messages = { path = "../rustc_error_messages" }
2020-08-27 22:58:48 -05:00
rustc_index = { path = "../rustc_index" }
rustc_span = { path = "../rustc_span" }
rustc_serialize = { path = "../rustc_serialize" }
rustc_ast = { path = "../rustc_ast" }
tracing = "0.1"
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
odht = { version = "0.3.1", features = ["nightly"] }