this repo has no description
1opam-version: "2.0" 2maintainer: "Hannes Mehnert <hannes@mehnert.org>" 3authors: "Hannes Mehnert <hannes@mehnert.org>" 4license: "ISC" 5homepage: "https://github.com/hannesm/domain-name" 6doc: "https://hannesm.github.io/domain-name/doc" 7bug-reports: "https://github.com/hannesm/domain-name/issues" 8depends: [ 9 "ocaml" {>= "4.04.2"} 10 "dune" 11 "fmt" 12 "astring" 13 "alcotest" {with-test} 14] 15build: [ 16 ["dune" "subst"] {dev} 17 ["dune" "build" "-p" name "-j" jobs] 18 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 19] 20dev-repo: "git+https://github.com/hannesm/domain-name.git" 21synopsis: "RFC 1035 Internet domain names" 22description: """ 23A domain name is a sequence of labels separated by dots, such as `foo.example`. 24Each label may contain any bytes. The length of each label may not exceed 63 25charactes. The total length of a domain name is limited to 253 (byte 26representation is 255), but other protocols (such as SMTP) may apply even 27smaller limits. A domain name label is case preserving, comparison is done in a 28case insensitive manner. 29""" 30url { 31 src: 32 "https://github.com/hannesm/domain-name/releases/download/v0.2.0/domain-name-v0.2.0.tbz" 33 checksum: [ 34 "sha256=58026d7c80e8b0f402e7ec2a95b3704df44298deee4701d83d2b46e8ffa7b7a2" 35 "sha512=34456200efd60cdfe46a3bf04f630b45b796a5a60de517509909a41366512c34d744017a2dde5698a46e82a84a6068fe09ccd10ba945377847174dda001cbdcf" 36 ] 37}