this repo has no description
1opam-version: "2.0" 2synopsis: "Elm-inspired decoders for Ocaml" 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: ["Matt Bray <mattjbray@gmail.com>"] 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 "odoc" {with-doc} 15 "containers" {with-test & >= "0.16"} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "@install" 27 "@runtest" {with-test} 28 "@doc" {with-doc} 29 ] 30] 31dev-repo: "git+https://github.com/mattjbray/ocaml-decoders.git" 32x-commit-hash: "aab49f578fc39d9e53090c104a3918ac2ef20c68" 33url { 34 src: 35 "https://github.com/mattjbray/ocaml-decoders/releases/download/v0.6.0/decoders-v0.6.0.tbz" 36 checksum: [ 37 "sha256=e7e3d43685e01aabf8c285c228a3bee9d601feff4fa065fe177860f16f3bed9e" 38 "sha512=d9774df8145367eb078016c9cdd3a80208b7c92ce6412e8bbb1c3b0fab370cac9a105014c996c7eeb2c32997fa9e4f94884ea897a435ba0785eff20e135b67bd" 39 ] 40}