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