5 unstable releases

new 0.4.2 Nov 18, 2024
0.3.12 Aug 19, 2024
0.3.11 Jun 7, 2024
0.3.4 Mar 1, 2024
0.1.8 Oct 26, 2021

#157 in Data structures

Download history 2109/week @ 2024-07-31 2258/week @ 2024-08-07 4781/week @ 2024-08-14 6479/week @ 2024-08-21 6071/week @ 2024-08-28 5750/week @ 2024-09-04 5387/week @ 2024-09-11 5236/week @ 2024-09-18 6587/week @ 2024-09-25 6866/week @ 2024-10-02 7507/week @ 2024-10-09 6811/week @ 2024-10-16 7316/week @ 2024-10-23 7551/week @ 2024-10-30 8548/week @ 2024-11-06 10659/week @ 2024-11-13

35,254 downloads per month
Used in 36 crates (5 directly)

MIT license

45KB
689 lines

fqdn

Crates.io Crates.io License Docs

Fully Qualified Domain Name

This crate allows basic manipulation of FQDN with an inner representation compatible with the RFC 1035.

So, all comparisons between character strings (e.g., labels, domain names, etc.) are done in a case-insensitive manner. Of course, FQDN hashing follows this behaviour. Note that FQDN are internally converted to lowercase.

Notice that this RFC introduces some size limits which are not set by default in this crate. The feature strict-rfc activates all of them but each of them could be activated independently of the others:

  • labels are limited to 63 chars (domain-label-length-limited-to-63)
  • names are limited to 255 chars (domain-name-length-limited-to-255)
  • labels should only contain letters, digits and hyphens (domain-name-without-special-chars)
  • FQDN should end with a period (domain-name-should-have-trailing-dot): notice that activating this feature modifies the behaviour of Display which adds a period at the end of the FQDN.

The only feature activated by default is the following:

  • label could not start or end by hyphen (domain-label-cannot-start-or-end-with-hyphen)

Dependencies