-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathletsencrypt-app.opam
33 lines (33 loc) · 1.02 KB
/
letsencrypt-app.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
opam-version: "2.0"
synopsis: "ACME implementation in OCaml"
description: "An ACME client implementation of the ACME protocol (RFC 8555) for OCaml"
maintainer: "Michele Mu <[email protected]>"
authors:
"Michele Mu <[email protected]>, Hannes Mehnert <[email protected]>"
license: "BSD-2-clause"
homepage: "https://github.com/robur-coop/ocaml-letsencrypt"
bug-reports: "https://github.com/robur-coop/ocaml-letsencrypt/issues"
doc: "https://robur-coop.github.io/ocaml-letsencrypt"
depends: [
"ocaml" {>= "4.13.0"}
"dune" {>= "1.2.0"}
"letsencrypt" {= version}
"letsencrypt-dns" {= version}
"cmdliner" {>= "1.1.0"}
"cohttp-lwt-unix" {>= "1.0.0"}
"logs"
"fmt" {>= "0.8.7"}
"lwt" {>= "2.6.0"}
"mirage-crypto-rng" {>= "1.0.0"}
"ptime"
"bos"
"fpath"
"randomconv" {>= "0.2.0"}
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/robur-coop/ocaml-letsencrypt.git"
x-maintenance-intent: [ "(latest)" ]