-
Notifications
You must be signed in to change notification settings - Fork 6
/
dune-project
73 lines (61 loc) · 1.15 KB
/
dune-project
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
(lang dune 2.7)
(name letters)
(version 0.3.3)
(generate_opam_files true)
(license MIT)
(authors "Miko Nieminen")
(maintainers "Miko Nieminen <miko.nieminen@iki.fi>")
(source
(github oxidizing/letters))
(homepage "https://github.com/oxidizing/letters/")
(bug_reports "https://github.com/oxidizing/letters/issues")
(documentation "https://oxidizing.github.io/letters/")
(package
(name letters)
(synopsis "Client library for sending emails over SMTP")
(description "Simple to use SMTP client implementation for OCaml")
(depends
(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))
;; Test dependencies
(alcotest
(and
(>= 1.1.0)
:with-test))
(alcotest-lwt
(and
(>= 1.1.0)
:with-test))
(yojson
(and
(>= 1.7.0)
:with-test))
;; Documentation dependencies
(odoc :with-doc)
;; Dev dependencies
(ocamlformat :dev)))
(implicit_transitive_deps false)