1 | [package] |
2 | name = "quote" |
3 | version = "1.0.35" # don't forget to update html_root_url, version in readme for breaking changes |
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.74" , 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 | [lib] |
29 | doc-scrape-examples = false |
30 | |
31 | [workspace] |
32 | members = ["benches" ] |
33 | |
34 | [package.metadata.docs.rs] |
35 | targets = ["x86_64-unknown-linux-gnu" ] |
36 | rustdoc-args = ["--generate-link-to-definition" ] |
37 | |