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 "logs"
18 "fmt"
19 "uri"
20 "lwt" {>= "2.6.0"}
21 "mirage-crypto" {< "1.0.0"}
22 "mirage-crypto-pk" {< "1.0.0"}
23 "mirage-crypto-pk" {with-test & >= "0.8.9" & < "1.0.0"}
24 "mirage-crypto-rng" {with-test & < "0.11.0"}
25 "x509" {>= "0.13.0"}
26 "yojson" {>= "1.6.0"}
27 "ounit" {with-test}
28 "ptime"
29 "domain-name" {>= "0.2.0"}
30]
31build: [
32 ["dune" "subst"] {dev}
33 ["dune" "build" "-p" name "-j" jobs]
34 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
35]
36dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git"
37x-commit-hash: "eef905dceda483d6ea2b2c8d7c849887d9522128"
38url {
39 src:
40 "https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.3.0/letsencrypt-v0.3.0.tbz"
41 checksum: [
42 "sha256=8772b7e6dbda0559a03a7b23b75c1431d42ae09a154eefd64b4c7e23b8d92deb"
43 "sha512=72b12219f279d4cf5353ef35a81b1f2f288d9aed471de2d9bf6b020df34e80a33fb44027a1ec1854cd60c7193a661b69c3b0de280a95f6e38d22765a677327a8"
44 ]
45}