this repo has no description
1opam-version: "2.0" 2synopsis: "Streaming XML codec for OCaml" 3description: """\ 4Xmlm is a streaming codec to decode and encode the XML data format. It 5can process XML documents without a complete in-memory representation of the 6data. 7 8Xmlm is made of a single independent module and distributed 9under the ISC license. 10 11Home page: http://erratique.ch/software/xmlm""" 12maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 13authors: "The xmlm programmers" 14license: "ISC" 15tags: ["xml" "codec" "org:erratique"] 16homepage: "https://erratique.ch/software/xmlm" 17doc: "https://erratique.ch/software/xmlm/doc/" 18bug-reports: "https://github.com/dbuenzli/xmlm/issues" 19depends: [ 20 "ocaml" {>= "4.05.0"} 21 "ocamlfind" {build} 22 "ocamlbuild" {build} 23 "topkg" {build & >= "1.0.3"} 24] 25build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 26dev-repo: "git+https://erratique.ch/repos/xmlm.git" 27url { 28 src: "https://erratique.ch/software/xmlm/releases/xmlm-1.4.0.tbz" 29 checksum: 30 "sha512=69f6112e6466952256d670fe1751fe4ae79e20d50f018ece1709eb2240cb1b00968ac7cee110771e0617a38ebc1cdb43e9d146471ce66ac1b176e4a1660531eb" 31} 32x-maintenance-intent: ["(latest)"]