This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "JMAP protocol implementation for OCaml" 4description: 5 "A complete implementation of the JSON Meta Application Protocol (JMAP) as specified in RFC 8620 (core) and RFC 8621 (mail)." 6maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 7authors: ["Anil Madhavapeddy <anil@recoil.org>"] 8license: "ISC" 9homepage: "https://github.com/avsm/ocaml-jmap" 10doc: "https://avsm.github.io/ocaml-jmap" 11bug-reports: "https://github.com/avsm/ocaml-jmap/issues" 12depends: [ 13 "dune" {>= "3.20"} 14 "ocaml" {>= "5.4.0"} 15 "jsont" {>= "0.2.0"} 16 "json-pointer" 17 "ptime" {>= "1.0.0"} 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/avsm/ocaml-jmap.git" 35x-maintenance-intent: ["(latest)"]