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