2016-01-21 17:19:23 -06:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "syntax_ext"
|
|
|
|
version = "0.0.0"
|
2019-02-04 06:49:54 -06:00
|
|
|
edition = "2018"
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "syntax_ext"
|
|
|
|
path = "lib.rs"
|
2018-12-19 11:11:31 -06:00
|
|
|
doctest = false
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
fmt_macros = { path = "../libfmt_macros" }
|
2019-02-07 09:56:05 -06:00
|
|
|
errors = { path = "../librustc_errors", package = "rustc_errors" }
|
2016-01-21 17:19:23 -06:00
|
|
|
syntax = { path = "../libsyntax" }
|
2016-06-21 17:08:13 -05:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
2018-04-25 11:30:39 -05:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2018-08-13 14:15:16 -05:00
|
|
|
rustc_target = { path = "../librustc_target" }
|
2018-11-28 15:52:22 -06:00
|
|
|
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
|
2018-07-20 20:04:02 -05:00
|
|
|
log = "0.4"
|