[package] name = "check_keyword" version = "0.3.1" authors = ["Joel Courtney "] edition = "2021" description = "A trait for String-like types to check if it is a keyword and convert it to a safe non-keyword if so." readme = "README.md" repository = "https://github.com/JoelCourtney/check_keyword" license = "MIT OR Apache-2.0" keywords = ["keyword", "string"] categories = ["development-tools::procedural-macro-helpers"] [lib] proc-macro = false path = "src/lib.rs" [dependencies] phf = { version = "0.11", features = ["macros"] } [features] default = ["2021"] 2021 = ["2018"] 2018 = []