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.07.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 "nocrypto"
26 "x509" {>= "0.9.0" & < "0.10.0"}
27 "yojson" {>= "1.6.0"}
28 "ounit" {with-test}
29 "dns" {< "9.0.0"}
30 "dns-tsig"
31 "ptime"
32 "bos"
33 "fpath"
34 "randomconv" {< "0.2.0"}
35 "domain-name" {>= "0.2.0"}
36]
37build: [
38 ["dune" "subst"] {dev}
39 ["dune" "build" "-p" name "-j" jobs]
40 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
41]
42dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git"
43url {
44 src:
45 "https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.2.0/letsencrypt-v0.2.0.tbz"
46 checksum: [
47 "sha256=381fcc0c75f191accfe1cac9019e8de15402e3037ab680487ade6b70353e1257"
48 "sha512=91d5c293f9a1173c593a4bd7cb6655328e10f0a836b22c54e08d2bad40b62e20e10cdcc83a16ffb49eb7907d53b5fee63ac3b813b99f5fafee021e5f3dded1f7"
49 ]
50}