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"
|
2018-12-19 18:11:31 +01:00
|
|
|
doctest = false
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2019-10-14 00:37:55 +01:00
|
|
|
bitflags = "1.2.1"
|
2019-07-23 18:50:47 +03:00
|
|
|
rustc_serialize = { path = "../libserialize", package = "serialize" }
|
2018-01-07 16:54:05 +01:00
|
|
|
log = "0.4"
|
2019-02-26 09:54:45 +01:00
|
|
|
scoped-tls = "1.0"
|
2019-04-10 19:47:55 +02:00
|
|
|
lazy_static = "1.0.0"
|
2016-06-27 17:45:33 +00:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
2019-02-08 00:56:05 +09:00
|
|
|
errors = { path = "../librustc_errors", package = "rustc_errors" }
|
2016-11-02 22:33:35 -06:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2019-09-26 05:30:10 +00:00
|
|
|
rustc_index = { path = "../librustc_index" }
|
2019-05-06 11:53:40 +03:00
|
|
|
rustc_lexer = { path = "../librustc_lexer" }
|
2019-11-04 15:59:09 +01:00
|
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|