this repo has no description
1opam-version: "2.0" 2synopsis: "Non-blocking streaming JSON codec for OCaml" 3description: """\ 4Jsonm is a non-blocking streaming codec to decode and encode the JSON 5data format. It can process JSON text without blocking on IO and 6without a complete in-memory representation of the data. 7 8The alternative "uncut" codec also processes whitespace and 9(non-standard) JSON with JavaScript comments. 10 11Jsonm is made of a single module and depends on [Uutf][uutf]. It is distributed 12under the ISC license. 13 14[uutf]: http://erratique.ch/software/uutf 15 16Home page: http://erratique.ch/software/jsonm 17Contact: Daniel Bünzli `<daniel.buenzl i@erratique.ch>`""" 18maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 19authors: "The jsonm programmers" 20license: "ISC" 21tags: ["json" "codec" "org:erratique"] 22homepage: "https://erratique.ch/software/jsonm" 23doc: "https://erratique.ch/software/jsonm/doc/" 24bug-reports: "https://github.com/dbuenzli/jsonm/issues" 25depends: [ 26 "ocaml" {>= "4.05.0"} 27 "ocamlfind" {build} 28 "ocamlbuild" {build} 29 "topkg" {build & >= "1.0.3"} 30 "uutf" {> "1.0.0"} 31] 32build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 33dev-repo: "git+https://erratique.ch/repos/jsonm.git" 34url { 35 src: "https://erratique.ch/software/jsonm/releases/jsonm-1.0.2.tbz" 36 checksum: 37 "sha512=0072f5c31080202ed1cb996a8530d72c882723f26b597f784441033f59338ba8c0cbabf901794d5b1ae749a54af4d7ebf7b47987db43488c7f6ac7fe191a042f" 38} 39x-maintenance-intent: ["(latest)"]