1 | [package] |
2 | name = "litrs" |
3 | version = "0.4.1" |
4 | authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>" ] |
5 | edition = "2018" |
6 | rust-version = "1.54" |
7 | |
8 | description = "" " |
9 | Parse and inspect Rust literals (i.e. tokens in the Rust programming language |
10 | representing fixed values). Particularly useful for proc macros, but can also |
11 | be used outside of a proc-macro context. |
12 | " "" |
13 | documentation = "https://docs.rs/litrs/" |
14 | repository = "https://github.com/LukasKalbertodt/litrs/" |
15 | readme = "README.md" |
16 | license = "MIT/Apache-2.0" |
17 | |
18 | keywords = ["literal" , "parsing" , "proc-macro" , "type" , "procedural" ] |
19 | categories = [ |
20 | "development-tools::procedural-macro-helpers" , |
21 | "parser-implementations" , |
22 | "development-tools::build-utils" , |
23 | ] |
24 | exclude = [".github" ] |
25 | |
26 | |
27 | [features] |
28 | default = ["proc-macro2" ] |
29 | check_suffix = ["unicode-xid" ] |
30 | |
31 | [dependencies] |
32 | proc-macro2 = { version = "1" , optional = true } |
33 | unicode-xid = { version = "0.2.4" , optional = true } |
34 | |