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.11.0" & < "0.12.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.2/letsencrypt-v0.2.2.tbz" 49 checksum: [ 50 "sha256=36be2e582bc04bb4a6583e7ed199b8c9c767632b25a20930de9c3a1e99a23539" 51 "sha512=a241886747e0090cd2433e6abce5a4b1a42ed948b7cdf056192b4ed247f3d53cbc6fd98bb3a18d229dff70e556bdf03f33bc605cec31e2028dfd505597db7f0e" 52 ] 53}