1[package]
2name = "const_format_proc_macros"
3version = "0.2.32"
4authors = ["rodrimati1992 <rodrimatt1985@gmail.com>"]
5rust-version = "1.57.0"
6edition = "2021"
7license = "Zlib"
8description = "Implementation detail of the `const_format` crate"
9keywords = ["no-std", "format", "concat"]
10categories = ["no-std", "text-processing"]
11repository = "https://github.com/rodrimati1992/const_format_crates/"
12include = [
13 "Cargo.toml",
14 "src/**/*.rs",
15 "../README.md",
16 "LICENSE-ZLIB.md",
17]
18
19[lib]
20proc-macro = true
21
22[features]
23default = []
24derive = ["syn", "syn/derive", "syn/printing"]
25debug = ["syn/extra-traits"]
26all = ["derive"]
27
28[dependencies]
29quote = "1.0.7"
30proc-macro2 = "1.0.19"
31unicode-xid = "0.2"
32
33[dependencies.syn]
34version = "1.0.38"
35optional = true
36default_features = false
37features = ["parsing", "proc-macro"]
38
39[dev-dependencies]
40fastrand = "1.3.4"
41
42
43[package.metadata.docs.rs]
44rustc-args = ["--cfg", "feature = \"all\""]
45