blob: 9dd4c7740a2c64d91e5471457c41e0a2613f36ea [file] [log] [blame]
Chih-Hung Hsieh87b35cf2019-10-25 18:07:55 -07001[package]
2name = "quote"
David LeGarea187dc12022-03-02 16:21:25 +00003version = "1.0.15" # don't forget to update html_root_url, version in readme for breaking changes
Chih-Hung Hsieh87b35cf2019-10-25 18:07:55 -07004authors = ["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"
Chih-Hung Hsieh87b35cf2019-10-25 18:07:55 -070012edition = "2018"
David LeGarea187dc12022-03-02 16:21:25 +000013autobenches = false
14rust-version = "1.31"
Chih-Hung Hsieh87b35cf2019-10-25 18:07:55 -070015
Chih-Hung Hsieh87b35cf2019-10-25 18:07:55 -070016[dependencies]
David LeGarea187dc12022-03-02 16:21:25 +000017proc-macro2 = { version = "1.0.36", default-features = false }
Chih-Hung Hsieh87b35cf2019-10-25 18:07:55 -070018
19[dev-dependencies]
Chih-Hung Hsieha8f50532020-03-20 12:42:34 -070020rustversion = "1.0"
David LeGarea187dc12022-03-02 16:21:25 +000021trybuild = { version = "1.0.52", features = ["diff"] }
Chih-Hung Hsieh87b35cf2019-10-25 18:07:55 -070022
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
David LeGarea187dc12022-03-02 16:21:25 +000029[workspace]
30members = ["benches"]
31
Haibo Huang202ace92020-04-30 15:57:56 -070032[package.metadata.docs.rs]
33targets = ["x86_64-unknown-linux-gnu"]