[package]
name = "fqdn"
version = "0.3.12"
authors = ["Xophe <christophe.dousson@orange.com>"]
edition = "2021"
license = "MIT"
description = "FQDN (Fully Qualified Domain Name)"
repository = "https://github.com/Orange-OpenSource/fqdn"
documentation = "https://docs.rs/fqdn"
keywords = ["fqdn","dns"]
categories = ["data-structures"]
[features]
default = [ "domain-label-cannot-start-or-end-with-hyphen" ]
strict-rfc = [
"domain-label-length-limited-to-63",
"domain-name-length-limited-to-255",
"domain-name-without-special-chars",
"domain-name-should-have-trailing-dot",
"domain-label-cannot-start-or-end-with-hyphen"
]
domain-name-length-limited-to-255 = []
domain-label-length-limited-to-63 = []
domain-name-without-special-chars = []
domain-name-should-have-trailing-dot = []
domain-label-cannot-start-or-end-with-hyphen = []