-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdkim.opam
41 lines (39 loc) · 1.28 KB
/
dkim.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
37
38
39
40
41
opam-version: "2.0"
name: "dkim"
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"}
"mrmime" {>= "0.5.0"}
"digestif" {>= "0.9.0"}
"ipaddr"
"astring" {>= "0.8.5"}
"base-unix"
"hmap"
"domain-name"
"dns-client" {>= "6.4.0"}
"cmdliner" {>= "1.1.0"}
"logs"
"fmt" {>= "0.8.7"}
"fpath"
"base64" {>= "3.0.0"}
"mirage-crypto" {>= "1.0.0"}
"mirage-crypto-pk" {>= "1.0.0"}
"x509" {>= "1.0.0"}
"mirage-crypto-rng" {with-test & >= "1.0.0"}
"alcotest" {with-test}
]