-
Notifications
You must be signed in to change notification settings - Fork 6
/
letters.opam
47 lines (47 loc) · 1.17 KB
/
letters.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.3"
synopsis: "Client library for sending emails over SMTP"
description: "Simple to use SMTP client implementation for OCaml"
maintainer: ["Miko Nieminen <[email protected]>"]
authors: ["Miko Nieminen"]
license: "MIT"
homepage: "https://github.com/oxidizing/letters/"
doc: "https://oxidizing.github.io/letters/"
bug-reports: "https://github.com/oxidizing/letters/issues"
depends: [
"dune" {>= "2.7"}
"ca-certs" {>= "0.2.1"}
"colombe" {>= "0.7.0"}
"containers" {>= "3.13.1"}
"fmt" {>= "0.8.8"}
"fpath" {>= "0.7.0"}
"lwt" {>= "5.2.0"}
"mrmime" {>= "0.3.1"}
"ocaml" {>= "4.08.1"}
"ptime" {>= "0.8.5"}
"sendmail" {>= "0.7.0"}
"tls-lwt" {>= "0.16.0"}
"tls" {>= "0.16.0"}
"x509" {>= "0.9.0"}
"alcotest" {>= "1.1.0" & with-test}
"alcotest-lwt" {>= "1.1.0" & with-test}
"yojson" {>= "1.7.0" & with-test}
"odoc" {with-doc}
"ocamlformat" {dev}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/oxidizing/letters.git"