blob: 85e861b405a9f8620b9480902e0208ce33666abd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[package]
authors = ["The Rust Project Developers"]
name = "rustc_back"
version = "0.0.0"
[lib]
name = "rustc_back"
path = "lib.rs"
crate-type = ["dylib"]
[dependencies]
syntax = { path = "../libsyntax" }
serialize = { path = "../libserialize" }
log = { path = "../liblog" }
[features]
jemalloc = []
|