File tree Expand file tree Collapse file tree 4 files changed +164
-0
lines changed
letsencrypt-app/letsencrypt-app.1.1.0
letsencrypt-dns/letsencrypt-dns.1.1.0
letsencrypt-mirage/letsencrypt-mirage.1.1.0
letsencrypt/letsencrypt.1.1.0 Expand file tree Collapse file tree 4 files changed +164
-0
lines changed Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ synopsis: "ACME implementation in OCaml"
3
+ description: "An ACME client implementation of the ACME protocol (RFC 8555) for OCaml"
4
+ maintainer: "Michele Mu <
[email protected] >"
5
+ authors:
6
+ "Michele Mu <
[email protected] >, Hannes Mehnert <
[email protected] >"
7
+ license: "BSD-2-clause"
8
+ homepage: "https://github.com/robur-coop/ocaml-letsencrypt"
9
+ bug-reports: "https://github.com/robur-coop/ocaml-letsencrypt/issues"
10
+ doc: "https://robur-coop.github.io/ocaml-letsencrypt"
11
+ depends: [
12
+ "ocaml" {>= "4.13.0"}
13
+ "dune" {>= "1.2.0"}
14
+ "letsencrypt" {= version}
15
+ "letsencrypt-dns" {= version}
16
+ "cmdliner" {>= "1.1.0"}
17
+ "cohttp-lwt-unix" {>= "1.0.0"}
18
+ "logs"
19
+ "fmt" {>= "0.8.7"}
20
+ "lwt" {>= "2.6.0"}
21
+ "mirage-crypto-rng" {>= "1.2.0"}
22
+ "ptime"
23
+ "bos"
24
+ "fpath"
25
+ "randomconv" {>= "0.2.0"}
26
+ "ipaddr" {>= "5.6.0"}
27
+ ]
28
+ build: [
29
+ ["dune" "subst"] {dev}
30
+ ["dune" "build" "-p" name "-j" jobs]
31
+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
32
+ ]
33
+ dev-repo: "git+https://github.com/robur-coop/ocaml-letsencrypt.git"
34
+ x-maintenance-intent: [ "(latest)" ]
35
+ url {
36
+ src:
37
+ "https://github.com/robur-coop/ocaml-letsencrypt/releases/download/v1.1.0/letsencrypt-1.1.0.tbz"
38
+ checksum: [
39
+ "sha256=230e7919f7f21b9b56038f616a8d73f415faa78376f842ae84b2283b01bc10a3"
40
+ "sha512=a30efac9a4d479d3519e99e8f81c2d824b55552d2a04b89caafe27836a326da1406be0be827619fd60526f65471ee7f0589ee348676e017cf1c857c1f803fafe"
41
+ ]
42
+ }
43
+ x-commit-hash: "cb7570b637dfefb5b254c4e592be1cb8ac1a0d95"
Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ synopsis: "DNS solver for ACME implementation in OCaml"
3
+ description: "A DNS solver for the ACME implementation in OCaml."
4
+ maintainer: "Michele Mu <
[email protected] >"
5
+ authors:
6
+ "Michele Mu <
[email protected] >, Hannes Mehnert <
[email protected] >"
7
+ license: "BSD-2-clause"
8
+ homepage: "https://github.com/robur-coop/ocaml-letsencrypt"
9
+ bug-reports: "https://github.com/robur-coop/ocaml-letsencrypt/issues"
10
+ doc: "https://robur-coop.github.io/ocaml-letsencrypt"
11
+ depends: [
12
+ "ocaml" {>= "4.13.0"}
13
+ "dune" {>= "1.2.0"}
14
+ "letsencrypt" {= version}
15
+ "logs"
16
+ "fmt" {>= "0.8.7"}
17
+ "lwt" {>= "2.6.0"}
18
+ "dns" {>= "9.0.0"}
19
+ "dns-tsig" {>= "9.0.0"}
20
+ "domain-name" {>= "0.2.0"}
21
+ ]
22
+ build: [
23
+ ["dune" "subst"] {dev}
24
+ ["dune" "build" "-p" name "-j" jobs]
25
+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
26
+ ]
27
+ dev-repo: "git+https://github.com/robur-coop/ocaml-letsencrypt.git"
28
+ x-maintenance-intent: [ "(latest)" ]
29
+ url {
30
+ src:
31
+ "https://github.com/robur-coop/ocaml-letsencrypt/releases/download/v1.1.0/letsencrypt-1.1.0.tbz"
32
+ checksum: [
33
+ "sha256=230e7919f7f21b9b56038f616a8d73f415faa78376f842ae84b2283b01bc10a3"
34
+ "sha512=a30efac9a4d479d3519e99e8f81c2d824b55552d2a04b89caafe27836a326da1406be0be827619fd60526f65471ee7f0589ee348676e017cf1c857c1f803fafe"
35
+ ]
36
+ }
37
+ x-commit-hash: "cb7570b637dfefb5b254c4e592be1cb8ac1a0d95"
Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ synopsis: "ACME implementation in OCaml for MirageOS"
3
+ description: "An ACME client implementation of the ACME protocol (RFC 8555) for OCaml & MirageOS"
4
+ maintainer: "Michele Mu <
[email protected] >"
5
+ authors:
6
+ "Michele Mu <
[email protected] >, Hannes Mehnert <
[email protected] >"
7
+ license: "BSD-2-clause"
8
+ homepage: "https://github.com/robur-coop/ocaml-letsencrypt"
9
+ bug-reports: "https://github.com/robur-coop/ocaml-letsencrypt/issues"
10
+ doc: "https://robur-coop.github.io/ocaml-letsencrypt"
11
+ depends: [
12
+ "ocaml" {>= "4.13.0"}
13
+ "dune" {>= "1.2.0"}
14
+ "letsencrypt" {= version}
15
+ "http-mirage-client" {>= "0.0.10"}
16
+ "tcpip" {>= "7.0.0"}
17
+ "mirage-sleep" {>= "4.0.0"}
18
+ "duration"
19
+ "emile" {>= "1.1"}
20
+ "paf" {>= "0.8.0"}
21
+ ]
22
+ build: [
23
+ ["dune" "subst"] {dev}
24
+ ["dune" "build" "-p" name "-j" jobs]
25
+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
26
+ ]
27
+ dev-repo: "git+https://github.com/robur-coop/ocaml-letsencrypt.git"
28
+ x-maintenance-intent: [ "(latest)" ]
29
+ url {
30
+ src:
31
+ "https://github.com/robur-coop/ocaml-letsencrypt/releases/download/v1.1.0/letsencrypt-1.1.0.tbz"
32
+ checksum: [
33
+ "sha256=230e7919f7f21b9b56038f616a8d73f415faa78376f842ae84b2283b01bc10a3"
34
+ "sha512=a30efac9a4d479d3519e99e8f81c2d824b55552d2a04b89caafe27836a326da1406be0be827619fd60526f65471ee7f0589ee348676e017cf1c857c1f803fafe"
35
+ ]
36
+ }
37
+ x-commit-hash: "cb7570b637dfefb5b254c4e592be1cb8ac1a0d95"
Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ synopsis: "ACME implementation in OCaml"
3
+ description: "An implementation of the ACME protocol (RFC 8555) for OCaml"
4
+ maintainer: "Michele Mu <
[email protected] >"
5
+ authors:
6
+ "Michele Mu <
[email protected] >, Hannes Mehnert <
[email protected] >"
7
+ license: "BSD-2-clause"
8
+ homepage: "https://github.com/robur-coop/ocaml-letsencrypt"
9
+ bug-reports: "https://github.com/robur-coop/ocaml-letsencrypt/issues"
10
+ doc: "https://robur-coop.github.io/ocaml-letsencrypt"
11
+ depends: [
12
+ "ocaml" {>= "4.13.0"}
13
+ "dune" {>= "1.2.0"}
14
+ "base64" {>= "3.3.0"}
15
+ "logs"
16
+ "fmt" {>= "0.8.7"}
17
+ "uri"
18
+ "lwt" {>= "2.6.0"}
19
+ "mirage-crypto" {>= "1.0.0"}
20
+ "mirage-crypto-ec" {>= "1.0.0"}
21
+ "mirage-crypto-pk" {>= "1.0.0"}
22
+ "mirage-crypto-rng" {with-test & >= "1.2.0"}
23
+ "digestif" {>= "1.2.0"}
24
+ "x509" {>= "1.0.0"}
25
+ "yojson" {>= "1.6.0"}
26
+ "ounit2" {with-test}
27
+ "ptime"
28
+ "domain-name" {>= "0.2.0"}
29
+ "asn1-combinators" {>= "0.3.2"}
30
+ ]
31
+ conflicts: [ "result" {< "1.5"} ]
32
+ build: [
33
+ ["dune" "subst"] {dev}
34
+ ["dune" "build" "-p" name "-j" jobs]
35
+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
36
+ ]
37
+ dev-repo: "git+https://github.com/robur-coop/ocaml-letsencrypt.git"
38
+ x-maintenance-intent: [ "(latest)" ]
39
+ url {
40
+ src:
41
+ "https://github.com/robur-coop/ocaml-letsencrypt/releases/download/v1.1.0/letsencrypt-1.1.0.tbz"
42
+ checksum: [
43
+ "sha256=230e7919f7f21b9b56038f616a8d73f415faa78376f842ae84b2283b01bc10a3"
44
+ "sha512=a30efac9a4d479d3519e99e8f81c2d824b55552d2a04b89caafe27836a326da1406be0be827619fd60526f65471ee7f0589ee348676e017cf1c857c1f803fafe"
45
+ ]
46
+ }
47
+ x-commit-hash: "cb7570b637dfefb5b254c4e592be1cb8ac1a0d95"
You can’t perform that action at this time.
0 commit comments