[package] authors = ["Zack Newman "] categories = ["no-std", "parsing"] description = "Parser for DNS names based on a provided ASCII character set." documentation = "https://docs.rs/ascii_domain/latest/ascii_domain/" edition = "2021" keywords = ["ascii", "dns", "domain", "validation"] license = "MIT OR Apache-2.0" name = "ascii_domain" readme = "README.md" repository = "https://git.philomathiclife.com/repos/ascii_domain/" rust-version = "1.81.0" version = "0.6.2" [badges] maintenance = { status = "actively-developed" } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] serde = { version = "1.0.210", default-features = false, features = ["alloc"], optional = true } [dev-dependencies] serde_json = { version = "1.0.128", default-features = false, features = ["alloc"] } ### FEATURES ################################################################# [features] # Provides serde support. serde = ["dep:serde"]