Skip to content

Commit 48583fb

Browse files
committed
Add: jsonm.1.0.2
1 parent dd77068 commit 48583fb

File tree

1 file changed

+38
-0
lines changed
  • packages/jsonm/jsonm.1.0.2

1 file changed

+38
-0
lines changed

packages/jsonm/jsonm.1.0.2/opam

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

0 commit comments

Comments
 (0)