17 lines
383 B
TOML
17 lines
383 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" }
|