[package] name = "unquote" version = "0.0.7" authors = ["Tamme Schichler "] edition = "2018" description = "A reverse quote macro... that is: A macro to parse input from a ParseStream according to a given pattern." license = "MIT OR Apache-2.0" repository = "https://github.com/Tamschi/unquote" homepage = "https://github.com/Tamschi/unquote/tree/v0.0.7" documentation = "https://docs.rs/unquote/0.0.7" keywords = ["syn"] categories = ["development-tools::procedural-macro-helpers"] readme = "README.md" include = [ "**/*.rs", "!tests/unincluded_*.rs", # Tests of meta data files not included in the package. "Cargo.toml", "CHANGELOG.md", "CODE_OF_CONDUCT.md", "LICENSE-*", "README.md", ] [badges] is-it-maintained-issue-resolution = { repository = "Tamschi/unquote" } is-it-maintained-open-issues = { repository = "Tamschi/unquote" } maintenance = { status = "experimental" } [lib] proc-macro = true # TODO: Re-export libraries! [dependencies] call2-for-syn = "3.0.4" proc-macro2 = "1.0.24" quote = "1.0.7" syn = { version = "2.0.29", features = ["extra-traits", "parsing", "printing"], default-features = false } [dev-dependencies] cargo-husky = "1.5.0" doc-comment = "0.3.3" git_info = "0.1.2" version-sync = "0.9.1"