this repo has no description
1(lang dune 3.0)
2
3(name jmap)
4
5(generate_opam_files true)
6
7(source
8 (github avsm/ocaml-jmap))
9
10(authors "Anil Madhavapeddy <anil@recoil.org>")
11
12(maintainers "Anil Madhavapeddy <anil@recoil.org>")
13
14(license ISC)
15
16(documentation https://avsm.github.io/ocaml-jmap)
17
18(package
19 (name jmap)
20 (synopsis "JMAP protocol implementation for OCaml")
21 (description
22 "A complete implementation of the JSON Meta Application Protocol (JMAP) as specified in RFC 8620 (core) and RFC 8621 (mail).")
23 (depends
24 (ocaml (>= 4.14.0))
25 (jsont (>= 0.2.0))
26 (ptime (>= 1.0.0))))
27
28(package
29 (name jmap-eio)
30 (synopsis "JMAP client for Eio")
31 (description "High-level JMAP client using Eio for async I/O and the Requests HTTP library.")
32 (depends
33 (ocaml (>= 4.14.0))
34 (jmap (= :version))
35 (jsont (>= 0.2.0))
36 eio
37 requests))