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