Cargo.toml (937B)
1 [package] 2 authors = ["Zack Newman <zack@philomathiclife.com>"] 3 categories = ["no-std", "parsing"] 4 description = "Parser for DNS names based on a provided ASCII character set." 5 documentation = "https://docs.rs/ascii_domain/latest/ascii_domain/" 6 edition = "2024" 7 keywords = ["ascii", "dns", "domain", "validation"] 8 license = "MIT OR Apache-2.0" 9 name = "ascii_domain" 10 readme = "README.md" 11 repository = "https://git.philomathiclife.com/repos/ascii_domain/" 12 rust-version = "1.85.0" 13 version = "0.6.3" 14 15 [package.metadata.docs.rs] 16 all-features = true 17 rustdoc-args = ["--cfg", "docsrs"] 18 19 [dependencies] 20 serde = { version = "1.0.218", default-features = false, features = ["alloc"], optional = true } 21 22 [dev-dependencies] 23 serde_json = { version = "1.0.139", default-features = false, features = ["alloc"] } 24 25 26 ### FEATURES ################################################################# 27 28 [features] 29 # Provides serde support. 30 serde = ["dep:serde"]