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