this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: ["David Scott"] 4license: "ISC" 5homepage: "https://github.com/mirage/ocaml-dns-forward" 6bug-reports: "https://github.com/mirage/ocaml-dns-forward/issues" 7dev-repo: "git+https://github.com/mirage/ocaml-dns-forward.git" 8doc: "https://mirage.github.io/ocaml-dns-forward/" 9 10build: [ 11 ["jbuilder" "subst" "-p" name] {dev} 12 ["jbuilder" "build" "-p" name "-j" jobs] 13 ["jbuilder" "runtest" "-p" name] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.03.0"} 17 "jbuilder" {>= "1.0+beta10"} 18 "ppx_sexp_conv" 19 "cstruct" {>= "3.0.0"} 20 "logs" {>= "0.5.0"} 21 "lwt" {>= "2.7.0"} 22 "mirage-flow-lwt" {>= "1.2.0"} 23 "mirage-clock-lwt" 24 "mirage-channel-lwt" 25 "mirage-time-lwt" 26 "duration" 27 "dns" {< "2.0.0"} 28 "rresult" 29 "astring" 30 "fmt" 31 "result" 32 "mtime" 33 "sexplib" 34 "ipaddr" {< "3.0.0"} 35] 36synopsis: "Library and tools for creating forwarding DNS servers" 37description: """ 38Features: 39 40- UDP and TCP DNS forwarding 41- support for sending queries to specific servers based on domain 42- dynamic configuration updates 43- extra records (e.g. from /etc/hosts)""" 44url { 45 src: 46 "https://github.com/mirage/ocaml-dns-forward/releases/download/v0.9.0/dns-forward-0.9.0.tbz" 47 checksum: [ 48 "sha256=bf13cddae42f3dfa597a79815124e0f94e0453d9808273eaa2f35542e836528b" 49 "md5=851d7b0ad1658586ff6554117dedf845" 50 ] 51}