2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "syntax"
|
|
|
|
version = "0.0.0"
|
2019-02-07 02:33:01 +09:00
|
|
|
edition = "2018"
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "syntax"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2017-09-08 15:08:01 -04:00
|
|
|
bitflags = "1.0"
|
2016-01-21 15:19:23 -08:00
|
|
|
serialize = { path = "../libserialize" }
|
2018-01-07 16:54:05 +01:00
|
|
|
log = "0.4"
|
2018-03-07 02:44:10 +01:00
|
|
|
scoped-tls = "0.1"
|
2016-06-27 17:45:33 +00:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
|
|
rustc_errors = { path = "../librustc_errors" }
|
2016-11-02 22:33:35 -06:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2018-04-25 19:30:39 +03:00
|
|
|
rustc_target = { path = "../librustc_target" }
|
2018-11-29 08:52:22 +11:00
|
|
|
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
|