File tree 3 files changed +132
-0
lines changed
dkim-mirage/dkim-mirage.0.7.0
3 files changed +132
-0
lines changed Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ maintainer: "Romain Calascibetta <
[email protected] >"
3
+ authors: "Romain Calascibetta <
[email protected] >"
4
+ homepage: "https://github.com/mirage/ocaml-dkim"
5
+ bug-reports: "https://github.com/mirage/ocaml-dkim/issues"
6
+ dev-repo: "git+https://github.com/mirage/ocaml-dkim.git"
7
+ doc: "https://mirage.github.io/ocaml-dkim/"
8
+ license: "MIT"
9
+ synopsis: "Implementation of DKIM in OCaml"
10
+ description: """A library and a binary to verify and sign an email
11
+ with the DKIM mechanism described by the RFC 6376"""
12
+
13
+ build: [
14
+ [ "dune" "subst" ] {dev}
15
+ [ "dune" "build" "-p" name "-j" jobs ]
16
+ [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
17
+ ]
18
+
19
+ depends: [
20
+ "ocaml" {>= "4.08.0"}
21
+ "dune" {>= "2.0.0"}
22
+ "dkim" {= version}
23
+ "lwt" {>= "5.3.0"}
24
+ "tls"
25
+ "ca-certs"
26
+ "cmdliner" {>= "1.1.0"}
27
+ "logs"
28
+ "fmt" {>= "0.8.7"}
29
+ "fpath"
30
+ "dns-client"
31
+ "dns-client-lwt" {>= "7.0.0"}
32
+ "alcotest" {with-test}
33
+ ]
34
+ url {
35
+ src:
36
+ "https://github.com/mirage/ocaml-dkim/releases/download/v0.7.0/dkim-0.7.0.tbz"
37
+ checksum: [
38
+ "sha256=dd5c3c6bcce680880500b47a9488edcc0cacaf18ed649011fe8fcfc307d243a9"
39
+ "sha512=ac6e53cf5ed40cefea5f07db3d7ca3fa9efd502addf86fdc3c549e3c1a3f7f65b2be3f590317de079bee499dfbc04f399621c464783d646acda029960ff2c5d8"
40
+ ]
41
+ }
42
+ x-commit-hash: "26dbafa409b7d5ef433465adf140076cdd633178"
Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ maintainer: "Romain Calascibetta <
[email protected] >"
3
+ authors: "Romain Calascibetta <
[email protected] >"
4
+ homepage: "https://github.com/mirage/ocaml-dkim"
5
+ bug-reports: "https://github.com/mirage/ocaml-dkim/issues"
6
+ dev-repo: "git+https://github.com/mirage/ocaml-dkim.git"
7
+ doc: "https://mirage.github.io/ocaml-dkim/"
8
+ license: "MIT"
9
+ synopsis: "Implementation of DKIM in OCaml for MirageOS"
10
+ description: """A light layer of the dkim library for MirageOS"""
11
+
12
+ build: [
13
+ [ "dune" "subst" ] {dev}
14
+ [ "dune" "build" "-p" name "-j" jobs ]
15
+ [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
16
+ ]
17
+
18
+ depends: [
19
+ "ocaml" {>= "4.08.0"}
20
+ "dune" {>= "2.0.0"}
21
+ "dkim" {= version}
22
+ "dns-client-mirage" {>= "8.0.0"}
23
+ "mirage-clock"
24
+ "tcpip" {>= "7.0.0"}
25
+ "lwt"
26
+ "alcotest" {with-test}
27
+ "digestif" {with-test}
28
+ "fmt" {with-test}
29
+ "logs" {with-test}
30
+ "mirage-crypto-rng" {with-test & >= "1.0.0"}
31
+ ]
32
+ url {
33
+ src:
34
+ "https://github.com/mirage/ocaml-dkim/releases/download/v0.7.0/dkim-0.7.0.tbz"
35
+ checksum: [
36
+ "sha256=dd5c3c6bcce680880500b47a9488edcc0cacaf18ed649011fe8fcfc307d243a9"
37
+ "sha512=ac6e53cf5ed40cefea5f07db3d7ca3fa9efd502addf86fdc3c549e3c1a3f7f65b2be3f590317de079bee499dfbc04f399621c464783d646acda029960ff2c5d8"
38
+ ]
39
+ }
40
+ x-commit-hash: "26dbafa409b7d5ef433465adf140076cdd633178"
Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ maintainer: "Romain Calascibetta <
[email protected] >"
3
+ authors: "Romain Calascibetta <
[email protected] >"
4
+ homepage: "https://github.com/mirage/ocaml-dkim"
5
+ bug-reports: "https://github.com/mirage/ocaml-dkim/issues"
6
+ dev-repo: "git+https://github.com/mirage/ocaml-dkim.git"
7
+ doc: "https://mirage.github.io/ocaml-dkim/"
8
+ license: "MIT"
9
+ synopsis: "Implementation of DKIM in OCaml"
10
+ description: """A library and a binary to verify and sign an email
11
+ with the DKIM mechanism described by the RFC 6376"""
12
+
13
+ build: [
14
+ [ "dune" "subst" ] {dev}
15
+ [ "dune" "build" "-p" name "-j" jobs ]
16
+ [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
17
+ ]
18
+
19
+ depends: [
20
+ "ocaml" {>= "4.08.0"}
21
+ "dune" {>= "2.0.0"}
22
+ "mrmime" {>= "0.6.1"}
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" {>= "1.0.0"}
36
+ "mirage-crypto-pk" {>= "1.0.0"}
37
+ "x509" {>= "1.0.0"}
38
+ "mirage-crypto-rng" {with-test & >= "1.0.0"}
39
+ "alcotest" {with-test}
40
+ ]
41
+
42
+ url {
43
+ src:
44
+ "https://github.com/mirage/ocaml-dkim/releases/download/v0.7.0/dkim-0.7.0.tbz"
45
+ checksum: [
46
+ "sha256=dd5c3c6bcce680880500b47a9488edcc0cacaf18ed649011fe8fcfc307d243a9"
47
+ "sha512=ac6e53cf5ed40cefea5f07db3d7ca3fa9efd502addf86fdc3c549e3c1a3f7f65b2be3f590317de079bee499dfbc04f399621c464783d646acda029960ff2c5d8"
48
+ ]
49
+ }
50
+ x-commit-hash: "26dbafa409b7d5ef433465adf140076cdd633178"
You can’t perform that action at this time.
0 commit comments