this repo has no description
1opam-version: "2.0"
2maintainer: "thomas@gazagnaire.org"
3authors: "Thomas Gazagnaire"
4license: "ISC"
5homepage: "https://github.com/mirage/ezjsonm"
6bug-reports: "https://github.com/mirage/ezjsonm/issues"
7dev-repo: "git+https://github.com/mirage/ezjsonm.git"
8doc: "https://mirage.github.io/ezjsonm"
9tags: [
10 "org:mirage"
11 "org:ocamllabs"
12]
13
14build: [
15 ["jbuilder" "subst" "-p" name] {dev}
16 [ "jbuilder" "build" "-p" name "-j" jobs ]
17]
18
19depends: [
20 "ocaml"
21 "ocamlfind" {build}
22 "jbuilder" {>= "1.0+beta9"}
23 "alcotest" {with-test & >= "0.4.0"}
24 "jsonm" {>= "0.9.1"}
25 "sexplib"
26 "hex"
27]
28synopsis: "An easy interface on top of the Jsonm library"
29description: """
30This version provides more convenient (but far less flexible)
31input and output functions that go to and from [string] values.
32This avoids the need to write signal code, which is useful for
33quick scripts that manipulate JSON.
34
35More advanced users should go straight to the Jsonm library and
36use it directly, rather than be saddled with the Ezjsonm interface."""
37url {
38 src:
39 "https://github.com/mirage/ezjsonm/releases/download/0.6.0/ezjsonm-0.6.0.tbz"
40 checksum: [
41 "sha256=716a2554a6c208cfed7878b1ce1d90030cf22ea40d896fccb2999670f5cfed6e"
42 "md5=97ed286b2a4937411779e895350df061"
43 ]
44}