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