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 "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.10.0" & < "0.11.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"
46url {
47 src:
48 "https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.2.1/letsencrypt-v0.2.1.tbz"
49 checksum: [
50 "sha256=1d143813663c019c03bb98221f766050f9c040660756648c1bb058cdd7a2cd16"
51 "sha512=687aff0da30c2e8e041545422c78ed0768c8f94a7a244d9fcde3f9bd770f3e704eb00a62a6f19cee5f511816d15934c24178cab2f22ec2cb27795d999631950e"
52 ]
53}