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: "Test suite for JMAP libraries"
5maintainer: ["your.email@example.com"]
6authors: ["Your Name"]
7license: "MIT"
8homepage: "https://github.com/yourusername/jmap"
9bug-reports: "https://github.com/yourusername/jmap/issues"
10depends: [
11 "ocaml" {>= "4.14"}
12 "dune" {>= "3.0" & >= "3.0"}
13 "jmap-core" {= version}
14 "jmap-mail" {= version}
15 "alcotest" {>= "1.7.0"}
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"