Lines Matching +full:github +full:- +full:token
2 name = "proc-macro2"
6 categories = ["development-tools::procedural-macro-helpers"]
7 description = "A substitute implementation of the compiler's `proc_macro` API to decouple token-bas…
8 documentation = "https://docs.rs/proc-macro2"
11 license = "MIT OR Apache-2.0"
12 repository = "https://github.com/dtolnay/proc-macro2"
13 rust-version = "1.56"
16 rustc-args = ["--cfg", "procmacro2_semver_exempt"]
17 rustdoc-args = ["--cfg", "procmacro2_semver_exempt", "--cfg", "doc_cfg", "--generate-link-to-defini…
18 targets = ["x86_64-unknown-linux-gnu"]
21 features = ["span-locations"]
24 unicode-ident = "1.0"
26 [dev-dependencies]
31 proc-macro = []
32 default = ["proc-macro"]
35 # of a token.
36 span-locations = []
42 doc-scrape-examples = false
45 members = ["benches/bench-libproc-macro", "tests/ui"]
47 [patch.crates-io]
48 # Our doc tests depend on quote which depends on proc-macro2. Without this line,
49 # the proc-macro2 dependency of quote would be the released version of
50 # proc-macro2. Quote would implement its traits for types from that proc-macro2,
52 # proc-macro2.
54 # GitHub Actions builds that are in progress at the time that you publish may
55 # spuriously fail. This is because they'll be building a local proc-macro2 which
56 # carries the second-most-recent version number, pulling in quote which resolves
57 # to a dependency on the just-published most recent version number. Thus the
59 proc-macro2 = { path = "." }