mirror of
https://gitee.com/openharmony/third_party_rust_syn
synced 2024-11-23 07:50:04 +00:00
52 lines
1.2 KiB
TOML
52 lines
1.2 KiB
TOML
[package]
|
|
name = "syn"
|
|
version = "0.15.22" # don't forget to update html_root_url
|
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
description = "Parser for Rust source code"
|
|
repository = "https://github.com/dtolnay/syn"
|
|
documentation = "https://docs.rs/syn"
|
|
categories = ["development-tools::procedural-macro-helpers"]
|
|
readme = "README.md"
|
|
include = ["/Cargo.toml", "/src/**/*.rs", "/README.md", "/LICENSE-APACHE", "/LICENSE-MIT"]
|
|
|
|
[lib]
|
|
name = "syn"
|
|
|
|
[[example]]
|
|
name = "dump-syntax"
|
|
path = "examples/dump-syntax/main.rs"
|
|
required-features = ["full", "parsing", "extra-traits"]
|
|
|
|
[features]
|
|
default = ["derive", "parsing", "printing", "clone-impls", "proc-macro"]
|
|
derive = []
|
|
full = []
|
|
parsing = []
|
|
printing = ["quote"]
|
|
visit = []
|
|
visit-mut = []
|
|
fold = []
|
|
clone-impls = []
|
|
extra-traits = []
|
|
proc-macro = ["proc-macro2/proc-macro", "quote/proc-macro"]
|
|
|
|
[dependencies]
|
|
proc-macro2 = { version = "0.4.4", default-features = false }
|
|
quote = { version = "0.6", optional = true, default-features = false }
|
|
unicode-xid = "0.1"
|
|
|
|
[dev-dependencies]
|
|
rayon = "1.0"
|
|
regex = "1.0"
|
|
walkdir = "2.1"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[package.metadata.playground]
|
|
all-features = true
|
|
|
|
[badges]
|
|
travis-ci = { repository = "dtolnay/syn" }
|