rust/src/libsyntax_ext/Cargo.toml

21 lines
563 B
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "syntax_ext"
version = "0.0.0"
2019-02-04 06:49:54 -06:00
edition = "2018"
[lib]
name = "syntax_ext"
path = "lib.rs"
doctest = false
[dependencies]
fmt_macros = { path = "../libfmt_macros" }
errors = { path = "../librustc_errors", package = "rustc_errors" }
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
rustc_data_structures = { path = "../librustc_data_structures" }
2018-08-13 14:15:16 -05:00
rustc_target = { path = "../librustc_target" }
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
2018-07-20 20:04:02 -05:00
log = "0.4"