blob: 099f276209a5ef9b180b8a10a7d939e64430ef7c [file] [log] [blame]
David Tolnay1a2f4632016-09-02 22:35:18 -07001[package]
David Tolnay41a34302019-07-14 16:10:57 -07002name = "quote-next"
David Tolnay29329732019-07-11 09:35:43 -07003version = "0.6.13" # don't forget to update html_root_url, version in readme for breaking changes
David Tolnay1a2f4632016-09-02 22:35:18 -07004authors = ["David Tolnay <dtolnay@gmail.com>"]
David Tolnay2085c7e2019-05-09 15:26:20 -07005license = "MIT OR Apache-2.0"
David Tolnay3f367112016-11-24 12:12:23 -08006description = "Quasi-quoting macro quote!(...)"
David Tolnay5232bc92016-09-02 22:41:45 -07007repository = "https://github.com/dtolnay/quote"
David Tolnay244ece12016-11-24 12:15:20 -08008documentation = "https://docs.rs/quote/"
David Tolnaya2120112016-10-09 14:18:46 -07009keywords = ["syn"]
Rolf Karp41997102018-10-28 23:41:43 +010010categories = ["development-tools::procedural-macro-helpers"]
David Tolnay4a2f2ca2018-03-31 22:59:32 +020011readme = "README.md"
David Tolnay0ce54b22017-02-19 13:12:13 -080012include = ["Cargo.toml", "src/**/*.rs", "tests/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
David Tolnay41a34302019-07-14 16:10:57 -070013publish = false # contains breaking changes
14
15[lib]
16name = "quote"
Alex Crichtondd5f6452017-05-19 19:24:44 -070017
18[dependencies]
David Tolnay4151ef62018-11-08 13:09:34 -080019proc-macro2 = { version = "0.4.21", default-features = false }
David Tolnay55fb0782018-05-20 17:18:26 -070020
David Tolnaya7819842019-07-14 16:19:42 -070021[dev-dependencies]
22rustversion = "0.1"
23trybuild = "1.0"
24
David Tolnay55fb0782018-05-20 17:18:26 -070025[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"]
David Tolnaydecf9d62018-08-07 00:19:09 -070030
31[badges]
32travis-ci = { repository = "dtolnay/quote" }