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.6.0/yojson-1.6.0.tbz" 37 checksum: [ 38 "sha256=5616cc6dd4c54bfb5d8cedc9271e01b0f2e3423e5c0ea5a91bf00033bf1f9d13" 39 "md5=8ca16557d3068253cc375452af3bde96" 40 ] 41}