this repo has no description
1opam-version: "2.0" 2synopsis: "ACME implementation in OCaml" 3description: "An ACME client 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/robur-coop/ocaml-letsencrypt" 9bug-reports: "https://github.com/robur-coop/ocaml-letsencrypt/issues" 10doc: "https://robur-coop.github.io/ocaml-letsencrypt" 11depends: [ 12 "ocaml" {>= "4.13.0"} 13 "dune" {>= "1.2.0"} 14 "letsencrypt" {= version} 15 "letsencrypt-dns" {= version} 16 "cmdliner" {>= "1.1.0"} 17 "cohttp-lwt-unix" {>= "1.0.0"} 18 "logs" 19 "fmt" {>= "0.8.7"} 20 "lwt" {>= "2.6.0"} 21 "mirage-crypto-rng" {>= "1.0.0"} 22 "ptime" 23 "bos" 24 "fpath" 25 "randomconv" {>= "0.2.0"} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 ["dune" "build" "-p" name "-j" jobs] 30 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 31] 32dev-repo: "git+https://github.com/robur-coop/ocaml-letsencrypt.git" 33url { 34 src: 35 "https://github.com/robur-coop/ocaml-letsencrypt/releases/download/v1.0.0/letsencrypt-1.0.0.tbz" 36 checksum: [ 37 "sha256=928346d7d6a82d8dbc1dbec6cae3ee254cab080139f67daf8db1f8cf4ca41af0" 38 "sha512=bcb394200ac4a9d4bc4ed45cc60d6c6af0827d81b68b79d0fcc5e80700a33eb6792cb3fd76ebb2309fe50a61c4ad71def3f8f10a508d7c50c38a4b30dccba906" 39 ] 40} 41x-commit-hash: "baf1fd86199920eeaa8cb8af4ca08ab296070742" 42x-maintenance-intent: [ "(latest)" ]