The opam repository for my Advent of Agentic Humps 2025

add jmap.dev package

JMAP protocol implementation for OCaml (RFC 8620, RFC 8621)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+40
+40
packages/jmap/jmap.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "JMAP protocol implementation for OCaml" 3 + description: 4 + "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." 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy <anil@recoil.org>"] 7 + license: "ISC" 8 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-jmap" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-jmap/issues" 10 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-jmap.git" 11 + depends: [ 12 + "dune" {>= "3.20"} 13 + "ocaml" {>= "5.4.0"} 14 + "jsont" {>= "0.2.0"} 15 + "json-pointer" 16 + "ptime" {>= "1.0.0"} 17 + "eio" {with-test} 18 + "requests" {with-test} 19 + "brr" {with-test} 20 + "odoc" {with-doc} 21 + ] 22 + depopts: ["eio" "requests" "brr"] 23 + build: [ 24 + ["dune" "subst"] {dev} 25 + [ 26 + "dune" 27 + "build" 28 + "-p" 29 + name 30 + "-j" 31 + jobs 32 + "@install" 33 + "@runtest" {with-test} 34 + "@doc" {with-doc} 35 + ] 36 + ] 37 + x-maintenance-intent: ["(latest)"] 38 + url { 39 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-jmap.git#main" 40 + }