this repo has no description
1(lang dune 3.20)
2
3(using mdx 0.4)
4
5(name jmap)
6
7(generate_opam_files true)
8
9(license ISC)
10
11(authors "Anil Madhavapeddy <anil@recoil.org>")
12
13(maintainers "Anil Madhavapeddy <anil@recoil.org>")
14
15(homepage "https://tangled.org/@anil.recoil.org/ocaml-jmap")
16
17(bug_reports "https://tangled.org/@anil.recoil.org/ocaml-jmap/issues")
18
19(maintenance_intent "(latest)")
20
21(package
22 (name jmap)
23 (synopsis "JMAP protocol implementation for OCaml")
24 (description
25 "A complete implementation of the JSON Meta Application Protocol (JMAP) as specified in RFC 8620 (core) and RFC 8621 (mail). Includes subpackages for Eio (jmap.eio) and browser (jmap.brr) clients.")
26 (depends
27 (ocaml (>= 5.4.0))
28 (jsont (>= 0.2.0))
29 json-pointer
30 (ptime (>= 1.0.0))
31 (eio :with-test)
32 (requests :with-test)
33 (brr :with-test))
34 (depopts eio requests brr))