1[package]
2name = "quote"
3version = "1.0.40"
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.80", 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[workspace]
29members = ["benches"]
30
31[package.metadata.docs.rs]
32targets = ["x86_64-unknown-linux-gnu"]
33rustdoc-args = [
34 "--generate-link-to-definition",
35 "--extern-html-root-url=core=https://doc.rust-lang.org",
36 "--extern-html-root-url=alloc=https://doc.rust-lang.org",
37 "--extern-html-root-url=std=https://doc.rust-lang.org",
38]
39