31 lines
949 B
TOML
31 lines
949 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_resolve"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "rustc_resolve"
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
bitflags = "1.2.1"
|
|
log = "0.4"
|
|
syntax = { path = "../libsyntax" }
|
|
arena = { path = "../libarena" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_ast_lowering = { path = "../librustc_ast_lowering" }
|
|
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
|
|
rustc_attr = { path = "../librustc_attr" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_errors = { path = "../librustc_errors" }
|
|
rustc_expand = { path = "../librustc_expand" }
|
|
rustc_feature = { path = "../librustc_feature" }
|
|
rustc_hir = { path = "../librustc_hir" }
|
|
rustc_metadata = { path = "../librustc_metadata" }
|
|
rustc_session = { path = "../librustc_session" }
|
|
rustc_span = { path = "../librustc_span" }
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|