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