[package]
edition = "2021"
rust-version = "1.56"
name = "namecode"
version = "0.1.1"
build = false
exclude = ["proptest-regressions/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Encode Unicode strings as valid programming language identifiers"
readme = "README.md"
keywords = [
"unicode",
"identifier",
"encoding",
"punycode",
"uax31",
]
categories = [
"encoding",
"text-processing",
]
license = "Apache-2.0"
repository = "https://github.com/AdjectiveNoun/structfs"
[lib]
name = "namecode"
path = "src/lib.rs"
[[bin]]
name = "namecode"
path = "src/main.rs"
[dependencies.unicode-ident]
version = "1.0"
[dev-dependencies.proptest]
version = "1.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]