blob: 730abc54568e1364e12747db4329b8caea0acd1d (
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 = "0.3"
[features]
jemalloc = []
|