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.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 "cstruct" {< "6.1.0"} 40] 41build: [ 42 ["dune" "subst"] {dev} 43 ["dune" "build" "-p" name "-j" jobs] 44 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 45] 46dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git" 47x-commit-hash: "e491778e3342c66db0c437bce8dc728ecfca44a8" 48url { 49 src: 50 "https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.2.5/letsencrypt-v0.2.5.tbz" 51 checksum: [ 52 "sha256=6e3bbb5f593823d49e83e698c06cf9ed48818695ec8318507b311ae74731e607" 53 "sha512=3d221f543a77562ad006b97ad79235da19617f7147c2c31c58d30cdcdd8d813f0fd3a6f4a6e9f91ae6cd1f4c534216470e801dfbf5c7bbc3c85c734746ecb038" 54 ] 55}