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-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"
|
2020-01-09 11:18:47 +01:00
|
|
|
rustc_errors = { path = "../librustc_errors" }
|
2019-12-31 20:15:40 +03:00
|
|
|
rustc_span = { path = "../librustc_span" }
|
2016-11-02 22:33:35 -06:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2019-11-30 00:23:38 +01:00
|
|
|
rustc_feature = { path = "../librustc_feature" }
|
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-09 20:56:19 +01:00
|
|
|
rustc_macros = { path = "../librustc_macros" }
|
2019-11-04 15:59:09 +01:00
|
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|
2019-11-12 12:09:20 -05:00
|
|
|
rustc_session = { path = "../librustc_session" }
|