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