24 lines
697 B
TOML
24 lines
697 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "syntax"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "syntax"
|
|
path = "lib.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
rustc_serialize = { path = "../libserialize", package = "serialize" }
|
|
log = "0.4"
|
|
scoped-tls = "1.0"
|
|
lazy_static = "1.0.0"
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
errors = { path = "../librustc_errors", package = "rustc_errors" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_lexer = { path = "../librustc_lexer" }
|
|
rustc_macros = { path = "../librustc_macros" }
|
|
rustc_target = { path = "../librustc_target" }
|
|
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
|