My agentic slop goes here. Not intended for anyone else!
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3version: "0.1.0"
4synopsis: "JMAP Mail Protocol (RFC 8621) implementation in OCaml"
5description:
6 "JMAP Mail extension with Mailbox, Email, Thread, and related types"
7maintainer: ["your.email@example.com"]
8authors: ["Your Name"]
9license: "MIT"
10homepage: "https://github.com/yourusername/jmap"
11bug-reports: "https://github.com/yourusername/jmap/issues"
12depends: [
13 "ocaml" {>= "4.14"}
14 "dune" {>= "3.0" & >= "3.0"}
15 "jmap-core" {= version}
16 "ezjsonm" {>= "1.3.0"}
17 "odoc" {with-doc}
18]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33dev-repo: "git+https://github.com/yourusername/jmap.git"