-
Notifications
You must be signed in to change notification settings - Fork 10
/
letsencrypt.opam
36 lines (36 loc) · 1.1 KB
/
letsencrypt.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
34
35
36
opam-version: "2.0"
synopsis: "ACME implementation in OCaml"
description: "An implementation of the ACME protocol (RFC 8555) for OCaml"
maintainer: "Michele Mu <maker@tumbolandia.net>"
authors:
"Michele Mu <maker@tumbolandia.net>, Hannes Mehnert <hannes@mehnert.org>"
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"}
"base64" {>= "3.3.0"}
"logs"
"fmt" {>= "0.8.7"}
"uri"
"lwt" {>= "2.6.0"}
"mirage-crypto" {>= "1.0.0"}
"mirage-crypto-ec" {>= "1.0.0"}
"mirage-crypto-pk" {>= "1.0.0"}
"mirage-crypto-rng" {with-test & >= "1.0.0"}
"digestif" {>= "1.2.0"}
"x509" {>= "1.0.0"}
"yojson" {>= "1.6.0"}
"ounit2" {with-test}
"ptime"
"domain-name" {>= "0.2.0"}
]
conflicts: [ "result" {< "1.5"} ]
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"