rust/src/librustc_hir/Cargo.toml

24 lines
745 B
TOML

[package]
authors = ["The Rust Project Developers"]
name = "rustc_hir"
version = "0.0.0"
edition = "2018"
[lib]
name = "rustc_hir"
path = "lib.rs"
doctest = false
[dependencies]
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
rustc_target = { path = "../librustc_target" }
rustc_macros = { path = "../librustc_macros" }
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_index = { path = "../librustc_index" }
rustc_span = { path = "../librustc_span" }
rustc_errors = { path = "../librustc_errors" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
syntax = { path = "../librustc_ast", package = "rustc_ast" }
lazy_static = "1"
smallvec = { version = "1.0", features = ["union", "may_dangle"] }