-
Notifications
You must be signed in to change notification settings - Fork 1
/
dkim-bin.opam
34 lines (32 loc) · 1.05 KB
/
dkim-bin.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
opam-version: "2.0"
name: "dkim-bin"
maintainer: "Romain Calascibetta <[email protected]>"
authors: "Romain Calascibetta <[email protected]>"
homepage: "https://github.com/mirage/ocaml-dkim"
bug-reports: "https://github.com/mirage/ocaml-dkim/issues"
dev-repo: "git+https://github.com/mirage/ocaml-dkim.git"
doc: "https://mirage.github.io/ocaml-dkim/"
license: "MIT"
synopsis: "Implementation of DKIM in OCaml"
description: """A library and a binary to verify and sign an email
with the DKIM mechanism described by the RFC 6376"""
build: [
[ "dune" "subst" ] {dev}
[ "dune" "build" "-p" name "-j" jobs ]
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.0.0"}
"dkim" {= version}
"lwt" {>= "5.3.0"}
"tls"
"ca-certs"
"cmdliner" {>= "1.1.0"}
"logs"
"fmt" {>= "0.8.7"}
"fpath"
"dns-client"
"dns-client-lwt" {>= "7.0.0"}
"alcotest" {with-test}
]