this repo has no description
1opam-version: "2.0"
2synopsis: "ACME implementation in OCaml"
3description: "An implementation of the ACME protocol (RFC 8555) for OCaml"
4maintainer: "Michele Mu <maker@tumbolandia.net>"
5authors:
6 "Michele Mu <maker@tumbolandia.net>, Hannes Mehnert <hannes@mehnert.org>"
7license: "BSD-2-clause"
8homepage: "https://github.com/mmaker/ocaml-letsencrypt"
9bug-reports: "https://github.com/mmaker/ocaml-letsencrypt/issues"
10doc: "https://mmaker.github.io/ocaml-letsencrypt"
11depends: [
12 "ocaml" {>= "4.08.0"}
13 "dune" {>= "1.2.0"}
14 "astring"
15 "rresult"
16 "base64" {>= "3.1.0"}
17 "cmdliner"
18 "cohttp"
19 "cohttp-lwt" {>= "2.5.1"}
20 "cohttp-lwt-unix" {>= "1.0.0"}
21 "zarith"
22 "logs"
23 "fmt"
24 "lwt" {>= "2.6.0"}
25 "mirage-crypto" {< "1.0.0"}
26 "mirage-crypto-pk" {< "1.0.0"}
27 "mirage-crypto-pk" {with-test & >= "0.8.9" & < "1.0.0"}
28 "mirage-crypto-rng" {< "0.11.0"}
29 "x509" {>= "0.11.0" & < "0.13.0"}
30 "yojson" {>= "1.6.0"}
31 "ounit" {with-test}
32 "dns" {< "9.0.0"}
33 "dns-tsig"
34 "ptime"
35 "bos"
36 "fpath"
37 "randomconv" {< "0.2.0"}
38 "domain-name" {>= "0.2.0"}
39]
40build: [
41 ["dune" "subst"] {dev}
42 ["dune" "build" "-p" name "-j" jobs]
43 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
44]
45dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git"
46x-commit-hash: "8a91a33d3c4a1916649320651b53a59c1c9227bc"
47url {
48 src:
49 "https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.2.4/letsencrypt-v0.2.4.tbz"
50 checksum: [
51 "sha256=91c79828a50243804da29c17563c54d2d528a79207e5b874dce6a3e7fedf7567"
52 "sha512=5dad924844e4420266179d386f8516ac57b4a37d70d8a7f3da88b164b8faeea030312531876420a9fb368993b0df5b32e96f04bc5cd065f4e91f8d80d3f006aa"
53 ]
54}