this repo has no description
1opam-version: "2.0"
2maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
3authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
4homepage: "https://github.com/dinosaure/ocaml-dkim"
5bug-reports: "https://github.com/dinosaure/ocaml-dkim/issues"
6dev-repo: "git+https://github.com/dinosaure/ocaml-dkim.git"
7doc: "https://dinosaure.github.io/ocaml-dkim/"
8license: "MIT"
9synopsis: "Implementation of DKIM in OCaml"
10description: """
11A library and a binary to verify and sign an email
12with the DKIM mechanism described by the RFC 6376
13"""
14
15build: [
16 [ "dune" "subst" ] {dev}
17 [ "dune" "build" "-p" name "-j" jobs ]
18 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
19]
20
21depends: [
22 "ocaml" {>= "4.08.0"}
23 "dune" {>= "2.0.0"}
24 "mrmime" {>= "0.5.0" & < "0.6.0"}
25 "digestif" {>= "0.9.0"}
26 "ipaddr"
27 "astring" {>= "0.8.5"}
28 "base-unix"
29 "hmap"
30 "domain-name"
31 "dns-client" {>= "6.0.0"}
32 "cmdliner"
33 "logs"
34 "fmt" {>= "0.8.7"}
35 "rresult" {>= "0.7.0"}
36 "fpath"
37 "base64" {>= "3.0.0"}
38 "mirage-crypto" {>= "0.9.2" & < "1.0.0"}
39 "mirage-crypto-pk" {>= "0.9.2" & < "1.0.0"}
40 "x509" {>= "0.6.3"}
41 "mirage-crypto-rng" {with-test & < "0.11.0"}
42 "alcotest" {with-test}
43]
44url {
45 src:
46 "https://github.com/dinosaure/ocaml-dkim/releases/download/v0.3.0/dkim-0.3.0.tbz"
47 checksum: [
48 "sha256=887c87e54ffbba2119cacba4337e3b7abbebaf900099ffeffa372347f9316112"
49 "sha512=232f1b7ec7555338e4cef0d81de5f3da083e8afaba0e374581b933ad3dcf3ef635206041621f3e980d78da877d40693f15fb54c9e2f7b0197bd9762ebc16f9b1"
50 ]
51}
52x-commit-hash: "a9e6041b64614100052bfb93435696f3bb289cb0"