ascii_domain

Domains whose labels are only ASCII.
git clone https://git.philomathiclife.com/repos/ascii_domain
Log | Files | Refs | README

Cargo.toml (995B)


      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 = "2021"
      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.81.0"
     13 version = "0.6.2"
     14 
     15 [badges]
     16 maintenance = { status = "actively-developed" }
     17 
     18 [package.metadata.docs.rs]
     19 all-features = true
     20 rustdoc-args = ["--cfg", "docsrs"]
     21 
     22 [dependencies]
     23 serde = { version = "1.0.210", default-features = false, features = ["alloc"], optional = true }
     24 
     25 [dev-dependencies]
     26 serde_json = { version = "1.0.128", default-features = false, features = ["alloc"] }
     27 
     28 
     29 ### FEATURES #################################################################
     30 
     31 [features]
     32 # Provides serde support.
     33 serde = ["dep:serde"]