Skip to content

Commit

Permalink
Add Cargo metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasKalbertodt committed May 24, 2021
1 parent 5c9d27f commit 8093cf4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ version = "0.1.0"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"

description = """
Parse and inspect Rust literals (i.e. tokens in the Rust programming language
representing fixed values). Particularly useful for proc macros, but can also
be used outside of a proc-macro context.
"""
documentation = "https://docs.rs/litrs/"
repository = "https://github.com/LukasKalbertodt/litrs/"
readme = "README.md"
license = "MIT/Apache-2.0"

keywords = ["literal", "parsing", "proc-macro", "type", "procedural"]
categories = [
"development-tools::procedural-macro-helpers",
"parser-implementations",
"development-tools::build-utils",
]
exclude = [".github"]


[features]
default = ["proc-macro", "proc-macro2"]
proc-macro = []
Expand Down

0 comments on commit 8093cf4

Please sign in to comment.