this repo has no description
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" {>= "4.08.0"} 13 "dune" {>= "2.0.0"} 14 "jmap" 15 "yojson" {>= "1.7.0"} 16 "uri" {>= "4.0.0"} 17 "unix" 18] 19build: [ 20 ["dune" "build" "-p" name "-j" jobs] 21]