this repo has no description
1opam-version: "2.0" 2synopsis: "ACME implementation in OCaml" 3description: "An implementation of the ACME protocol 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.05.0"} 13 "dune" 14 "astring" 15 "rresult" 16 "base64" {>= "3.1.0"} 17 "cmdliner" 18 "cohttp" 19 "cohttp-lwt" 20 "cohttp-lwt-unix" {>= "1.0.0"} 21 "zarith" 22 "logs" 23 "fmt" 24 "lwt" {>= "2.6.0"} 25 "nocrypto" 26 "x509" {>= "0.8.1" & < "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.1.0/letsencrypt-v0.1.0.tbz" 46 checksum: [ 47 "sha256=f852822a6b75da8b9dbe7f1ffef80bf0266719d2114e3144a2a8d7fdc627f655" 48 "sha512=fb4038c604fc3c9c8dfeb85ad380438e5a18492d9f653f75c92b672c46cf84acf8a97dfc601ed6a56b43b2af015763d91e7a36a68c58e637c80de4c31c3e3de2" 49 ] 50}