this repo has no description
1opam-version: "2.0"
2synopsis: "CBOR 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: ["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 "dune" {>= "3.1"}
13 "ocaml" {>= "4.03.0"}
14 "decoders" {= version}
15 "cbor"
16 "odoc" {with-doc}
17 "containers" {with-test & >= "0.16"}
18 "ounit2" {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"
35url {
36 src:
37 "https://github.com/mattjbray/ocaml-decoders/releases/download/v1.0.0/decoders-1.0.0.tbz"
38 checksum: [
39 "sha256=47fe79c4102d0f710eff3ceaef313100d9df3c7945834d3cf38a39742a573597"
40 "sha512=6fe4e9f99d865fb24c8b1da08ba485282fc8eaf6ed48cedbe8109cae863ad441a95b2643b4ea217a6b012f149682ca69af436ed26a3d646903738fce5651a229"
41 ]
42}
43x-commit-hash: "0e0afb7e988aa746a1d6d7f1e8ee8ba2e875e382"