1[package]
2name = "quote"
3version = "1.0.35" # don't forget to update html_root_url, version in readme for breaking changes
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5autobenches = false
6categories = ["development-tools::procedural-macro-helpers"]
7description = "Quasi-quoting macro quote!(...)"
8documentation = "https://docs.rs/quote/"
9edition = "2018"
10keywords = ["macros", "syn"]
11license = "MIT OR Apache-2.0"
12repository = "https://github.com/dtolnay/quote"
13rust-version = "1.56"
14
15[dependencies]
16proc-macro2 = { version = "1.0.74", default-features = false }
17
18[dev-dependencies]
19rustversion = "1.0"
20trybuild = { version = "1.0.66", features = ["diff"] }
21
22[features]
23default = ["proc-macro"]
24# Disabling the proc-macro feature removes the dynamic library dependency on
25# libproc_macro in the rustc compiler.
26proc-macro = ["proc-macro2/proc-macro"]
27
28[lib]
29doc-scrape-examples = false
30
31[workspace]
32members = ["benches"]
33
34[package.metadata.docs.rs]
35targets = ["x86_64-unknown-linux-gnu"]
36rustdoc-args = ["--generate-link-to-definition"]
37