this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Reading and writing of plist files in the XML format in pure OCaml"
4description: """
5Reading and writing of plist files in the XML format in pure OCaml.
6
7Implementation of https://www.apple.com/DTDs/PropertyList-1.0.dtd."""
8maintainer: ["Alan Hu <alanh@ccs.neu.edu>"]
9authors: ["Alan Hu <alanh@ccs.neu.edu>"]
10license: "MIT"
11homepage: "https://github.com/alan-j-hu/ocaml-plist-xml"
12doc: "https://alan-j-hu.github.io/ocaml-plist-xml/"
13bug-reports: "https://github.com/alan-j-hu/ocaml-plist-xml/issues"
14depends: [
15 "dune" {>= "2.6"}
16 "base64" {>= "3.4" & < "4.0"}
17 "ISO8601" {>= "0.2.6" & < "0.3"}
18 "markup" {>= "0.8" & < "1.0"}
19 "ocaml" {>= "4.08"}
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]
36dev-repo: "git+https://github.com/alan-j-hu/ocaml-plist-xml.git"
37x-commit-hash: "58e2b25e6bf0864eee2564bfa783f8be4176a27b"
38url {
39 src:
40 "https://github.com/alan-j-hu/ocaml-plist-xml/releases/download/0.2.0/plist-xml-lwt-0.2.0.tbz"
41 checksum: [
42 "sha256=99116ffa8246caa4a4bfb920f282413154e119c21771eff347b563b4dc5b2703"
43 "sha512=cb4d769fa7ce83209fdd7ff7b8f25f09319add35e967f9956da441d195c889c8fadea9d52f44f381ca8b61023b6c88a6ac6b25f4ae8269b8a3c46640b86bc0ff"
44 ]
45}