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: """A library and a binary to verify and sign an email
11with the DKIM mechanism described by the RFC 6376"""
12
13build: [
14 [ "dune" "subst" ] {dev}
15 [ "dune" "build" "-p" name "-j" jobs ]
16 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
17]
18
19depends: [
20 "ocaml" {>= "4.08.0"}
21 "dune" {>= "2.0.0"}
22 "mrmime" {>= "0.3.1" & < "0.5.0"}
23 "digestif" {>= "0.9.0"}
24 "base-unix"
25 "hmap"
26 "domain-name" {< "0.3.1"}
27 "dns-client" {>= "4.6.3" & < "5.0.0"}
28 "cmdliner"
29 "logs"
30 "fmt"
31 "fpath"
32 "base64" {>= "3.0.0"}
33 "mirage-crypto" {>= "0.10.3" & < "1.0.0"}
34 "mirage-crypto-pk" {>= "0.10.3" & < "1.0.0"}
35 "x509" {>= "0.11.2" & < "0.12.0"}
36 "alcotest" {with-test}
37]
38x-commit-hash: "a2a7e28476b2d7819abf2e6061b4725a8d6679d3"
39url {
40 src:
41 "https://github.com/dinosaure/ocaml-dkim/releases/download/v0.1.0/dkim-v0.1.0.tbz"
42 checksum: [
43 "sha256=b58402bd40f7c9a789162be0e5714d330afecd6174f81be0687d1f489403a643"
44 "sha512=4649c9a0453d54fc7d8974be6fe96c463da85d0e805680d88cbb8741ee15012b07167a66654144d95802bd5349240aeddc2a5d504f6adccdea5ae06083d86809"
45 ]
46}