this repo has no description
1opam-version: "2.0" 2synopsis: "Msgpck backend for decoders" 3description: 4 "A combinator library for \"decoding\" JSON-like values into your own Ocaml types, inspired by Elm's `Json.Decode` and `Json.Encode`." 5maintainer: ["Matt Bray <mattjbray@gmail.com>"] 6authors: [ 7 "Matt Bray <mattjbray@gmail.com>" "Simon Cruanes <simon@imandra.ai>" 8] 9license: "ISC" 10homepage: "https://github.com/mattjbray/ocaml-decoders" 11doc: "https://mattjbray.github.io/ocaml-decoders/" 12bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues" 13depends: [ 14 "ocaml" {>= "4.03.0"} 15 "dune" {>= "2.0"} 16 "decoders" {>= "0.3.0" & < "1.0.0"} 17 "msgpck" {>= "1.3"} 18 "odoc" {with-doc} 19 "containers" {with-test} 20 "ounit" {with-test} 21] 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35] 36dev-repo: "git+https://github.com/mattjbray/ocaml-decoders.git" 37x-commit-hash: "19200c6221a834098306620234310de514f6301c" 38url { 39 src: 40 "https://github.com/mattjbray/ocaml-decoders/releases/download/v0.5.0/decoders-v0.5.0.tbz" 41 checksum: [ 42 "sha256=fc0b672a2ebcb1cfb7575384c5033b14985b26fe90ab517749ba77ed7fc0f11a" 43 "sha512=908f8cc12267344cb10319cf8ce05308734980093581791da07365e9986cbe96a1bc420da9eb6057930cbe37255824d76ee8c96d68e31f13bd3361834a6c7e10" 44 ] 45}