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] 12run-test: [["dune" "runtest" "-p" name "-j" jobs]] 13depends: [ 14 "ocaml" {>= "4.02.3"} 15 "dune" 16 "cppo" {build} 17 "easy-format" 18 "biniou" {>= "1.2.0"} 19 "alcotest" {with-test & >= "0.8.5"} 20] 21synopsis: 22 "Yojson is an optimized parsing and printing library for the JSON format" 23description: """ 24Yojson is an optimized parsing and printing library for the JSON format. 25 26It addresses a few shortcomings of json-wheel including 2x speedup, 27polymorphic variants and optional syntax for tuples and variants. 28 29ydump is a pretty-printing command-line program provided with the 30yojson package. 31 32The program atdgen can be used to derive OCaml-JSON serializers and 33deserializers from type definitions.""" 34url { 35 src: 36 "https://github.com/ocaml-community/yojson/releases/download/1.7.0/yojson-1.7.0.tbz" 37 checksum: [ 38 "sha256=656fc65f794186274f8b961dc38daba9e2de2fc993829291defbda2186812cc6" 39 "md5=b89d39ca3f8c532abe5f547ad3b8f84d" 40 ] 41}