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