blob: a63460d912d7d3033821ff16363b6e69b1631a75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[package]
authors = ["The Rust Project Developers"]
name = "rustc_resolve"
version = "0.0.0"
[lib]
name = "rustc_resolve"
path = "lib.rs"
crate-type = ["dylib"]
test = false
[dependencies]
log = { path = "../liblog" }
syntax = { path = "../libsyntax" }
rustc = { path = "../librustc" }
arena = { path = "../libarena" }
|