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/mirage/ocaml-dkim" 5bug-reports: "https://github.com/mirage/ocaml-dkim/issues" 6dev-repo: "git+https://github.com/mirage/ocaml-dkim.git" 7doc: "https://mirage.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.5.0"} 23 "digestif" {>= "0.9.0"} 24 "ipaddr" 25 "astring" {>= "0.8.5"} 26 "base-unix" 27 "hmap" 28 "domain-name" 29 "dns-client" {>= "6.4.0"} 30 "cmdliner" {>= "1.1.0"} 31 "logs" 32 "fmt" {>= "0.8.7"} 33 "fpath" 34 "base64" {>= "3.0.0"} 35 "mirage-crypto" {>= "0.9.2" & < "1.0.0"} 36 "mirage-crypto-pk" {>= "0.9.2" & < "1.0.0"} 37 "x509" {>= "0.12.0"} 38 "mirage-crypto-rng" {with-test & >= "0.11.0" & < "1.0.0"} 39 "alcotest" {with-test} 40] 41url { 42 src: 43 "https://github.com/mirage/ocaml-dkim/releases/download/v0.6.0/dkim-0.6.0.tbz" 44 checksum: [ 45 "sha256=ac1c14a5a323685feae840cc2b70501b02d976699c765b38ba9055483eeed7d4" 46 "sha512=7ec76d26136c2e285ecffa420a8f4b49dfae67dca7a94178654f3ad873bc01dbb1bb8b75d00c5d83f30f13f9e592fbf47d08612cf9120c4edad25260e5c43abe" 47 ] 48} 49x-commit-hash: "feb514230fef8a0179b534dbd7c73d73d39ade8e"