22 lines
635 B
TOML
22 lines
635 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_traits"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "rustc_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
log = { version = "0.4" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_hir = { path = "../librustc_hir" }
|
|
rustc_macros = { path = "../librustc_macros" }
|
|
rustc_target = { path = "../librustc_target" }
|
|
syntax = { path = "../libsyntax" }
|
|
rustc_span = { path = "../librustc_span" }
|
|
chalk-engine = { version = "0.9.0", default-features=false }
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|