blob: c0520229f45e03e1c4718f479f6b8add13dd2123 [file] [log] [blame]
Chih-Hung Hsieh87b35cf2019-10-25 18:07:55 -07001[package]
2name = "quote"
3version = "1.0.2" # 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"
12include = ["Cargo.toml", "src/**/*.rs", "tests/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
13edition = "2018"
14
15[lib]
16name = "quote"
17
18[dependencies]
19proc-macro2 = { version = "1.0", default-features = false }
20
21[dev-dependencies]
22rustversion = "0.1"
23trybuild = "1.0"
24
25[features]
26default = ["proc-macro"]
27# Disabling the proc-macro feature removes the dynamic library dependency on
28# libproc_macro in the rustc compiler.
29proc-macro = ["proc-macro2/proc-macro"]
30
31[badges]
32travis-ci = { repository = "dtolnay/quote" }