-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsendmail.opam
32 lines (30 loc) · 993 Bytes
/
sendmail.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
opam-version: "2.0"
license: "MIT"
authors: [ "Gwenaëlle Lecat" "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
maintainer: [ "Gwenaëlle Lecat" "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
homepage: "https://github.com/mirage/colombe"
bug-reports: "https://github.com/mirage/colombe/issues"
dev-repo: "git+https://github.com/mirage/colombe.git"
doc: "https://mirage.github.io/colombe/"
synopsis: "Implementation of the sendmail command"
description: """A library to be able to send an email."""
build: [
[ "dune" "build" "-p" name "-j" jobs ]
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "2.0"}
"colombe" {= version}
"tls" {>= "1.0.2"}
"base64" {>= "3.0.0"}
"ke" {>= "0.4"}
"logs"
"rresult"
"hxd" {>= "0.3.2"}
"bigstringaf" {>= "0.2.0"}
"emile" {>= "0.8" & with-test}
"mrmime" {>= "0.3.2" & with-test}
"cstruct" {>= "6.0.0"}
"alcotest" {with-test}
]