this repo has no description
1opam-version: "2.0"
2maintainer: "anil@recoil.org"
3authors: [
4 "Anil Madhavapeddy"
5 "Tim Deegan"
6 "Richard Mortier"
7 "Haris Rotsos"
8 "David Sheets"
9 "Thomas Gazagnaire"
10 "Luke Dunstan"
11 "David Scott"
12]
13license: "ISC"
14synopsis: "DNS client and server implementation in pure OCaml"
15description: """
16This is a pure OCaml implementation of the DNS protocol. It is intended to be
17a reasonably high-performance implementation, but clarity is preferred rather
18than low-level performance hacks.
19
20There are several concrete implementations using this package that you probably
21want to use for practical purposes:
22
23- dns-lwt for the Lwt concurrency library
24- dns-lwt-unix using the Lwt_unix bindings
25- dns-async using the Jane Street Async library
26- mirage-dns for the MirageOS unikernel framework
27"""
28tags: ["org:mirage" "org:xapi-project"]
29homepage: "https://github.com/mirage/ocaml-dns"
30doc: "https://mirage.github.io/ocaml-dns/"
31bug-reports: "https://github.com/mirage/ocaml-dns/issues"
32depends: [
33 "ocaml" {>= "4.03.0" & < "5.0"}
34 "dune" {>= "1.2"}
35 "cstruct" {>= "3.0.2" & < "6.0.0"}
36 "ppx_cstruct"
37 "re" {>="1.7.2"}
38 "ipaddr" {>= "4.0.0"}
39 "uri" {>= "1.7.0"}
40 "domain-name" {>="0.3.0"}
41 "base64" {>= "3.0.0"}
42 "hashcons"
43 "result"
44 "mmap" {with-test}
45 "bigarray-compat" {with-test}
46 "pcap-format" {with-test}
47 "ounit" {with-test}
48]
49build: [
50 ["dune" "subst"] {dev}
51 ["dune" "build" "-p" name "-j" jobs]
52 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
53]
54dev-repo: "git+https://github.com/mirage/ocaml-dns.git"
55url {
56 src:
57 "https://github.com/mirage/ocaml-dns/releases/download/v1.1.3/dns-v1.1.3.tbz"
58 checksum: [
59 "sha256=17a3b507d7c1848f14ba213397bcc5df3967bbb9792ec6c650ea5dd9feb5456a"
60 "sha512=cd13ea4c92c018dc884fcce7eb62d2f3f1ef76c3a51c11bb3fe722d72b90e4070f1d0f939cd9faa93c710a4d2dee9761d89557f8086c9fb4ca75c6f1a467fbf3"
61 ]
62}