21 lines
562 B
TOML
21 lines
562 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "syntax_ext"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
name = "syntax_ext"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
fmt_macros = { path = "../libfmt_macros" }
|
|
proc_macro = { path = "../libproc_macro" }
|
|
rustc_errors = { path = "../librustc_errors" }
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_target = { path = "../librustc_target" }
|
|
smallvec = { version = "0.6.5", features = ["union"] }
|
|
log = "0.4"
|