rust/src/libsyntax/Cargo.toml

24 lines
648 B
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "syntax"
version = "0.0.0"
2019-02-07 02:33:01 +09:00
edition = "2018"
[lib]
name = "syntax"
path = "lib.rs"
doctest = false
[dependencies]
2019-10-14 00:37:55 +01:00
bitflags = "1.2.1"
rustc_serialize = { path = "../libserialize", package = "serialize" }
log = "0.4"
2019-02-26 09:54:45 +01:00
scoped-tls = "1.0"
lazy_static = "1.0.0"
2016-06-27 17:45:33 +00:00
syntax_pos = { path = "../libsyntax_pos" }
errors = { path = "../librustc_errors", package = "rustc_errors" }
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_index = { path = "../librustc_index" }
rustc_lexer = { path = "../librustc_lexer" }
2019-11-04 15:59:09 +01:00
smallvec = { version = "1.0", features = ["union", "may_dangle"] }