blob: 765cb80f35710b30e742711ff434cdca4c9c1de4 (
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_allocator"
version = "0.0.0"
[lib]
path = "lib.rs"
crate-type = ["dylib"]
test = false
[dependencies]
rustc = { path = "../librustc" }
rustc_errors = { path = "../librustc_errors" }
rustc_target = { path = "../librustc_target" }
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
|