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 "ipaddr"
25 "base-unix"
26 "hmap"
27 "domain-name" {< "0.3.1"}
28 "dns-client" {>= "5.0.0" & < "6.0.0"}
29 "cmdliner"
30 "logs"
31 "fmt"
32 "fpath"
33 "base64" {>= "3.0.0"}
34 "mirage-crypto" {>= "0.10.3" & < "1.0.0"}
35 "mirage-crypto-pk" {>= "0.10.3" & < "1.0.0"}
36 "x509" {>= "0.15.0"}
37 "mirage-crypto-rng" {with-test & < "0.11.0"}
38 "alcotest" {with-test}
39]
40x-commit-hash: "10b5680751d2d470af16078545e1ccfb41c9f6ed"
41url {
42 src:
43 "https://github.com/dinosaure/ocaml-dkim/releases/download/v0.2.0/dkim-v0.2.0.tbz"
44 checksum: [
45 "sha256=6764cf63de6becdcb4979e81e246369db1dd0b2009fb114f187a65e6e4dfeae6"
46 "sha512=19855ff8a878f7c00ecca9c969a7cd8fad6ecee444f6645cec19d0969773873b5c61956c2e1a65da3290241f90b5379bcf18258647d16305b73ad1667a18fc04"
47 ]
48}