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: "aab49f578fc39d9e53090c104a3918ac2ef20c68"
38url {
39 src:
40 "https://github.com/mattjbray/ocaml-decoders/releases/download/v0.6.0/decoders-v0.6.0.tbz"
41 checksum: [
42 "sha256=e7e3d43685e01aabf8c285c228a3bee9d601feff4fa065fe177860f16f3bed9e"
43 "sha512=d9774df8145367eb078016c9cdd3a80208b7c92ce6412e8bbb1c3b0fab370cac9a105014c996c7eeb2c32997fa9e4f94884ea897a435ba0785eff20e135b67bd"
44 ]
45}