this repo has no description
1opam-version: "2.0" 2synopsis: "Bencode 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: ["Simon Cruanes <simon@imandra.ai>"] 7license: "ISC" 8homepage: "https://github.com/mattjbray/ocaml-decoders" 9doc: "https://mattjbray.github.io/ocaml-decoders/" 10bug-reports: "https://github.com/mattjbray/ocaml-decoders/issues" 11depends: [ 12 "ocaml" {>= "4.03.0"} 13 "dune" {>= "2.0"} 14 "decoders" {>= "0.3.0" & < "1.0.0"} 15 "bencode" {>= "2.0"} 16 "odoc" {with-doc} 17 "containers" {with-test} 18 "ounit" {with-test} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/mattjbray/ocaml-decoders.git" 35x-commit-hash: "19200c6221a834098306620234310de514f6301c" 36url { 37 src: 38 "https://github.com/mattjbray/ocaml-decoders/releases/download/v0.5.0/decoders-v0.5.0.tbz" 39 checksum: [ 40 "sha256=fc0b672a2ebcb1cfb7575384c5033b14985b26fe90ab517749ba77ed7fc0f11a" 41 "sha512=908f8cc12267344cb10319cf8ce05308734980093581791da07365e9986cbe96a1bc420da9eb6057930cbe37255824d76ee8c96d68e31f13bd3361834a6c7e10" 42 ] 43}