this repo has no description
1opam-version: "2.0"
2maintainer: "martin@mjambon.com"
3authors: ["Martin Jambon"]
4homepage: "http://mjambon.com/yojson.html"
5bug-reports: "https://github.com/mjambon/yojson/issues"
6dev-repo: "git+https://github.com/mjambon/yojson.git"
7build: [
8 ["jbuilder" "build" "-p" name "-j" jobs]
9 ["jbuilder" "runtest" "-p" name] {with-test}
10]
11depends: [
12 "ocaml" {>= "4.02.3"}
13 "jbuilder" {>= "1.0+beta7"}
14 "cppo" {build}
15 "easy-format"
16 "biniou" {>= "1.2.0"}
17]
18conflicts: [
19 "dune" {>= "1.7.0"}
20]
21synopsis:
22 "Yojson is an optimized parsing and printing library for the JSON format"
23description: """
24It addresses a few shortcomings of json-wheel including 2x speedup,
25polymorphic variants and optional syntax for tuples and variants.
26
27ydump is a pretty-printing command-line program provided with the
28yojson package.
29
30The program atdgen can be used to derive OCaml-JSON serializers and
31deserializers from type definitions."""
32url {
33 src: "https://github.com/mjambon/yojson/archive/v1.4.1.tar.gz"
34 checksum: [
35 "sha256=c081a8cb5a03bddbcac4614f468cf5edafe11805277572af4071e362be6611fb"
36 "md5=3ea6e36422dd670e8ab880710d5f7398"
37 ]
38}