My agentic slop goes here. Not intended for anyone else!
at main 727 B view raw
1opam-version: "2.0" 2name: "jmap-email" 3version: "~dev" 4synopsis: "JMAP Email extensions library (RFC 8621)" 5description: """ 6OCaml implementation of the JMAP Mail extensions protocol as defined in RFC 8621. 7Provides type definitions and structures for working with email in JMAP. 8""" 9maintainer: ["user@example.com"] 10authors: ["Example User"] 11license: "MIT" 12homepage: "https://github.com/example/jmap" 13bug-reports: "https://github.com/example/jmap/issues" 14depends: [ 15 "ocaml" {>= "4.08.0"} 16 "dune" {>= "3.0"} 17 "jmap" 18 "yojson" 19 "uri" 20 "odoc" {with-doc} 21] 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35]