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.07.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.9.0" & < "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.1/letsencrypt-v0.1.1.tbz" 46 checksum: [ 47 "sha256=0443c4f3c29d4440e975cc9f3da611a3a3bea6d7fdef523f90eeae48d6dc58d3" 48 "sha512=1d362892a44dd2678b2dd788d8164688e1b44f95a09610e2e80afdb6fb24dcb0e88b550786e679840e8ae4ba8a92922164407cad1c63fede67c4a87b5f5b85d0" 49 ] 50}