]> git.proxmox.com Git - rustc.git/blob - src/vendor/proc-macro2-0.2.3/Cargo.toml.orig
New upstream version 1.27.2+dfsg1
[rustc.git] / src / vendor / proc-macro2-0.2.3 / Cargo.toml.orig
1 [package]
2 name = "proc-macro2"
3 version = "0.2.3" # remember to update html_root_url
4 authors = ["Alex Crichton <alex@alexcrichton.com>"]
5 license = "MIT/Apache-2.0"
6 readme = "README.md"
7 keywords = ["macros"]
8 repository = "https://github.com/alexcrichton/proc-macro2"
9 homepage = "https://github.com/alexcrichton/proc-macro2"
10 documentation = "https://docs.rs/proc-macro2"
11 description = """
12 A stable implementation of the upcoming new `proc_macro` API. Comes with an
13 option, off by default, to also reimplement itself in terms of the upstream
14 unstable API.
15 """
16
17 [lib]
18 doctest = false
19
20 [dependencies]
21 unicode-xid = "0.1"
22
23 [features]
24 # When enabled: act as a shim around the nightly compiler's proc_macro crate.
25 # This requires a nightly compiler.
26 #
27 # When disabled: emulate the same API as the nightly compiler's proc_macro crate
28 # but in a way that works on all stable compilers >=1.15.0.
29 nightly = ["proc-macro"]
30
31 proc-macro = []
32 default = ["proc-macro"]