move dns to mirage/ocaml-dns#master
This commit is contained in:
parent
7c97086877
commit
09b77e97d0
6 changed files with 13 additions and 12 deletions
4
packages/dns-certify.4.6.99/opam
vendored
4
packages/dns-certify.4.6.99/opam
vendored
|
@ -23,6 +23,8 @@ depends: [
|
|||
"mirage-clock" {>= "3.0.0"}
|
||||
"mirage-stack" {>= "2.0.0"}
|
||||
"logs"
|
||||
"mirage-crypto-pk" {>= "0.8.0"}
|
||||
"mirage-crypto-rng" {>= "0.8.0"}
|
||||
]
|
||||
|
||||
build: [
|
||||
|
@ -36,4 +38,4 @@ description: """
|
|||
A function to retrieve a certificate when providing a hostname, TSIG key, server
|
||||
IP, and an optional key seed. Best used with an letsencrypt unikernel.
|
||||
"""
|
||||
url { src: "git+https://github.com/hannesm/ocaml-dns.git#fix-mirage-certify" }
|
||||
url { src: "git+https://github.com/mirage/ocaml-dns.git#master" }
|
||||
|
|
2
packages/dns-client.4.6.99/opam
vendored
2
packages/dns-client.4.6.99/opam
vendored
|
@ -36,4 +36,4 @@ synopsis: "Pure DNS resolver API"
|
|||
description: """
|
||||
A pure resolver implementation using uDNS.
|
||||
"""
|
||||
url { src: "git+https://github.com/hannesm/ocaml-dns.git#fix-mirage-certify" }
|
||||
url { src: "git+https://github.com/mirage/ocaml-dns.git#master" }
|
||||
|
|
7
packages/dns-mirage.4.6.99/opam
vendored
7
packages/dns-mirage.4.6.99/opam
vendored
|
@ -31,11 +31,10 @@ pure fragment of OCaml (no mutation, isolated IO, no exceptions).
|
|||
Legacy resource record types are not dealt with, and there is no plan to support
|
||||
`ISDN`, `MAILA`, `MAILB`, `WKS`, `MB`, `NULL`, `HINFO`, ... . `AXFR` is only
|
||||
handled via TCP connections. The only resource class supported is `IN` (the
|
||||
Internet). In a similar vein, wildcard records are _not_ supported, and it is
|
||||
unlikely they'll ever be in this library. Truncated hmac in `TSIG` are not
|
||||
supported (always the full length of the hash algorithm is used).
|
||||
Internet). Truncated hmac in `TSIG` are not supported (always the full length
|
||||
of the hash algorithm is used).
|
||||
|
||||
Please read [the blog article](https://hannes.nqsb.io/Posts/DNS) for a more
|
||||
detailed overview.
|
||||
"""
|
||||
url { src: "git+https://github.com/hannesm/ocaml-dns.git#fix-mirage-certify" }
|
||||
url { src: "git+https://github.com/mirage/ocaml-dns.git#master" }
|
||||
|
|
3
packages/dns-server.4.6.99/opam
vendored
3
packages/dns-server.4.6.99/opam
vendored
|
@ -21,6 +21,7 @@ depends: [
|
|||
"mirage-crypto-rng" {with-test}
|
||||
"alcotest" {with-test}
|
||||
"dns-tsig" {with-test}
|
||||
"base64" {with-test & >= "3.0.0"}
|
||||
"metrics"
|
||||
]
|
||||
|
||||
|
@ -35,4 +36,4 @@ description: """
|
|||
Primary and secondary DNS server implemented in value-passing style. Needs an
|
||||
effectful layer to be useful.
|
||||
"""
|
||||
url { src: "git+https://github.com/hannesm/ocaml-dns.git#fix-mirage-certify" }
|
||||
url { src: "git+https://github.com/mirage/ocaml-dns.git#master" }
|
||||
|
|
2
packages/dns-tsig.4.6.99/opam
vendored
2
packages/dns-tsig.4.6.99/opam
vendored
|
@ -26,4 +26,4 @@ synopsis: "TSIG support for DNS"
|
|||
description: """
|
||||
TSIG is used to authenticate nsupdate frames using a HMAC.
|
||||
"""
|
||||
url { src: "git+https://github.com/hannesm/ocaml-dns.git#fix-mirage-certify" }
|
||||
url { src: "git+https://github.com/mirage/ocaml-dns.git#master" }
|
||||
|
|
7
packages/dns.4.6.99/opam
vendored
7
packages/dns.4.6.99/opam
vendored
|
@ -35,11 +35,10 @@ pure fragment of OCaml (no mutation, isolated IO, no exceptions).
|
|||
Legacy resource record types are not dealt with, and there is no plan to support
|
||||
`ISDN`, `MAILA`, `MAILB`, `WKS`, `MB`, `NULL`, `HINFO`, ... . `AXFR` is only
|
||||
handled via TCP connections. The only resource class supported is `IN` (the
|
||||
Internet). In a similar vein, wildcard records are _not_ supported, and it is
|
||||
unlikely they'll ever be in this library. Truncated hmac in `TSIG` are not
|
||||
supported (always the full length of the hash algorithm is used).
|
||||
Internet). Truncated hmac in `TSIG` are not supported (always the full length
|
||||
of the hash algorithm is used).
|
||||
|
||||
Please read [the blog article](https://hannes.nqsb.io/Posts/DNS) for a more
|
||||
detailed overview.
|
||||
"""
|
||||
url { src: "git+https://github.com/hannesm/ocaml-dns.git#fix-mirage-certify" }
|
||||
url { src: "git+https://github.com/mirage/ocaml-dns.git#master" }
|
||||
|
|
Loading…
Reference in a new issue