My agentic slop goes here. Not intended for anyone else!
1opam-version: "2.0" 2name: "jmap-unix" 3version: "~dev" 4synopsis: "JMAP Unix implementation" 5description: "Unix-specific implementation of the JMAP protocol (RFC8620)" 6maintainer: ["maintainer@example.com"] 7authors: ["JMAP OCaml Team"] 8license: "MIT" 9homepage: "https://github.com/example/jmap-ocaml" 10bug-reports: "https://github.com/example/jmap-ocaml/issues" 11depends: [ 12 "ocaml" {>= "5.0.0"} 13 "dune" {>= "3.0.0"} 14 "jmap" 15 "jmap-email" 16 "yojson" {>= "1.7.0"} 17 "uri" {>= "4.0.0"} 18 "eio" {>= "0.12"} 19 "tls-eio" {>= "0.17.0"} 20 "cohttp-eio" {>= "6.0.0"} 21 "ca-certs" {>= "0.2.0"} 22 "x509" {>= "0.16.0"} 23 "tls" {>= "0.17.0"} 24 "domain-name" {>= "0.4.0"} 25] 26build: [ 27 ["dune" "build" "-p" name "-j" jobs] 28]