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 "dune" {>= "3.1"} 15 "ocaml" {>= "4.03.0"} 16 "decoders" {= version} 17 "msgpck" {>= "1.3"} 18 "ocplib-endian" {>= "0.6"} 19 "odoc" {with-doc} 20 "containers" {with-test & >= "0.16"} 21 "ounit2" {with-test} 22] 23dev-repo: "git+https://github.com/mattjbray/ocaml-decoders.git" 24build: [ 25 ["dune" "subst"] {dev} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 "@runtest" {with-test & ocaml:version >= "4.08"} 35 "@doc" {with-doc} 36 ] 37] 38url { 39 src: 40 "https://github.com/mattjbray/ocaml-decoders/releases/download/v1.0.0/decoders-1.0.0.tbz" 41 checksum: [ 42 "sha256=47fe79c4102d0f710eff3ceaef313100d9df3c7945834d3cf38a39742a573597" 43 "sha512=6fe4e9f99d865fb24c8b1da08ba485282fc8eaf6ed48cedbe8109cae863ad441a95b2643b4ea217a6b012f149682ca69af436ed26a3d646903738fce5651a229" 44 ] 45} 46x-commit-hash: "0e0afb7e988aa746a1d6d7f1e8ee8ba2e875e382"