this repo has no description
at main 26 lines 706 B view raw
1(lang dune 3.21) 2(using mdx 0.4) 3 4(name jmap) 5 6(generate_opam_files true) 7 8(license ISC) 9(authors "Anil Madhavapeddy <anil@recoil.org>") 10(maintainers "Anil Madhavapeddy <anil@recoil.org>") 11(source (tangled anil.recoil.org/ocaml-jmap)) 12 13(package 14 (name jmap) 15 (synopsis "JMAP protocol implementation for OCaml") 16 (description 17 "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.") 18 (depends 19 (ocaml (>= 5.4.0)) 20 (jsont (>= 0.2.0)) 21 json-pointer 22 (ptime (>= 1.0.0)) 23 (eio :with-test) 24 (requests :with-test) 25 (brr :with-test)) 26 (depopts eio requests brr))