forked from
anil.recoil.org/ocaml-imap
IMAP in OCaml
1(lang dune 3.20)
2
3(name imap)
4
5(generate_opam_files true)
6
7(license ISC)
8(authors "Anil Madhavapeddy")
9(homepage "https://tangled.org/anil.recoil.org/ocaml-imap")
10(maintainers "Anil Madhavapeddy <anil@recoil.org>")
11(bug_reports "https://tangled.org/anil.recoil.org/ocaml-imap/issues")
12(maintenance_intent "(latest)")
13
14(package
15 (name imap)
16 (synopsis "IMAP4rev2 client library for OCaml")
17 (description
18 "A comprehensive IMAP client library implementing RFC 9051 IMAP4rev2. \
19 Provides connection management, authentication, mailbox operations, \
20 message fetching, IDLE support, and connection pooling. Includes an \
21 imap-client CLI tool.")
22 (depends
23 (ocaml (>= 5.1.0))
24 (eio (>= 1.0))
25 (eio_main (>= 1.0))
26 (tls-eio (>= 1.0))
27 (tls (>= 1.0))
28 (cstruct (>= 6.0.0))
29 (fmt (>= 0.9.0))
30 (base64 (>= 3.5.0))
31 (cmdliner (>= 1.2.0))
32 (mirage-crypto-rng (>= 1.0.0))
33 (odoc :with-doc)
34 (alcotest (and :with-test (>= 1.7.0)))))