File: opam

package info (click to toggle)
jsonm 1.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 200 kB
  • sloc: ml: 1,369; makefile: 29
file content (35 lines) | stat: -rw-r--r-- 1,226 bytes parent folder | download
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
35
version: "1.0.2"
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"