mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 05:25:37 +03:00
16 lines
368 B
TOML
16 lines
368 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" }
|
|
log = { path = "../liblog" }
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
rustc_errors = { path = "../librustc_errors" } |