this repo has no description
1opam-version: "2.0"
2maintainer: "martin@mjambon.com"
3authors: ["Martin Jambon"]
4homepage: "https://github.com/ocaml-community/yojson"
5bug-reports: "https://github.com/ocaml-community/yojson/issues"
6dev-repo: "git+https://github.com/ocaml-community/yojson.git"
7doc: "https://ocaml-community.github.io/yojson/"
8build: [
9 ["dune" "subst"] {dev}
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "4.02.3"}
14 "dune"
15 "cppo" {build}
16 "easy-format"
17 "biniou" {>= "1.2.0"}
18]
19synopsis:
20 "Yojson is an optimized parsing and printing library for the JSON format"
21description: """
22Yojson is an optimized parsing and printing library for the JSON format.
23
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:
34 "https://github.com/ocaml-community/yojson/releases/download/1.5.0/yojson-1.5.0.tbz"
35 checksum: [
36 "sha256=70a0f972fedebd736546eae832e255753d3214a8b3283597ae112577d70c8b33"
37 "md5=d80de1bacdde292af42f7c78b323da7b"
38 ]
39}