This repository has no description
1(lang dune 3.20)
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 (>= 5.4.0))
25 (jsont (>= 0.2.0))
26 json-pointer
27 (ptime (>= 1.0.0))))
28
29(package
30 (name jmap-eio)
31 (synopsis "JMAP client for Eio")
32 (description "High-level JMAP client using Eio for async I/O and the Requests HTTP library.")
33 (depends
34 (ocaml (>= 5.4.0))
35 (jmap (= :version))
36 (jsont (>= 0.2.0))
37 eio
38 requests))