|
| 1 | +opam-version: "2.0" |
| 2 | +maintainer: "team AT robur dot coop" |
| 3 | +authors: ["Hannes Mehnert < [email protected]>"] |
| 4 | +homepage: "https://github.com/mirage/ocaml-dns" |
| 5 | +doc: "https://mirage.github.io/ocaml-dns/" |
| 6 | +dev-repo: "git+https://github.com/mirage/ocaml-dns.git" |
| 7 | +bug-reports: "https://github.com/mirage/ocaml-dns/issues" |
| 8 | +license: "BSD-2-Clause" |
| 9 | + |
| 10 | +depends: [ |
| 11 | + "dune" {>= "2.7.0"} |
| 12 | + "ocaml" {>= "4.13.0"} |
| 13 | + "cstruct" {>= "6.0.0"} |
| 14 | + "dns" {= version} |
| 15 | + "ipaddr" {>= "5.2.0"} |
| 16 | + "lwt" {>= "4.2.1"} |
| 17 | + "tcpip" {>= "8.2.0"} |
| 18 | +] |
| 19 | + |
| 20 | +build: [ |
| 21 | + ["dune" "subst"] {dev} |
| 22 | + ["dune" "build" "-p" name "-j" jobs] |
| 23 | + ["dune" "runtest" "-p" name "-j" jobs] {with-test} |
| 24 | +] |
| 25 | + |
| 26 | +synopsis: "An opinionated Domain Name System (DNS) library" |
| 27 | +description: """ |
| 28 | +µDNS supports most of the domain name system used in the wild. It adheres to |
| 29 | +strict conventions. Failing early and hard. It is mostly implemented in the |
| 30 | +pure fragment of OCaml (no mutation, isolated IO, no exceptions). |
| 31 | + |
| 32 | +Legacy resource record types are not dealt with, and there is no plan to support |
| 33 | +`ISDN`, `MAILA`, `MAILB`, `WKS`, `MB`, `NULL`, `HINFO`, ... . `AXFR` is only |
| 34 | +handled via TCP connections. The only resource class supported is `IN` (the |
| 35 | +Internet). Truncated hmac in `TSIG` are not supported (always the full length |
| 36 | +of the hash algorithm is used). |
| 37 | + |
| 38 | +Please read [the blog article](https://hannes.robur.coop/Posts/DNS) for a more |
| 39 | +detailed overview. |
| 40 | +""" |
| 41 | +x-maintenance-intent: [ "(latest)" ] |
| 42 | +url { |
| 43 | + src: |
| 44 | + "https://github.com/mirage/ocaml-dns/releases/download/v10.1.0/dns-10.1.0.tbz" |
| 45 | + checksum: [ |
| 46 | + "sha256=5c6fea514cec39c732e71764643e8fb9588dee038c991c184accbed3b41e37d2" |
| 47 | + "sha512=58f74749cdc7c5d6adb059821dca42d2a20ae05dd989c93afddbd37806c748cb2709a51f2c7880e79d1bf99384639aa40c4a540047cb27da6ed609ca8eeb6eca" |
| 48 | + ] |
| 49 | +} |
| 50 | +x-commit-hash: "f0afeed4224506e96ca2216dba2374b4cb7ebe28" |
0 commit comments