this repo has no description
1opam-version: "2.0" 2maintainer: "peter.degroff@gmail.com" 3authors: "Peter DeGroff" 4license: "ISC" 5homepage: "https://github.com/dagoof/ocaml-json-decoder" 6doc: "https://dagoof.github.io/ocaml-json-decoder/doc" 7bug-reports: "https://github.com/dagoof/ocaml-json-decoder/issues" 8dev-repo: "git+https://github.com/dagoof/ocaml-json-decoder.git" 9depends: [ 10 "ocaml" {>= "4.02.3"} 11 "dune" {>= "1.1"} 12 "alcotest" {with-test} 13 "result" 14 "yojson" {< "2.0.0"} 15] 16build: [ 17 ["dune" "subst"] {dev} 18 ["dune" "build" "-p" name "-j" jobs] 19 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 20] 21 22description: """ 23JSON Decoder is an OCaml module that enables flexible decoding of JSON values. 24It is based on Elm's Json.Decode module with a few tweaks. 25 26This module allows you to do things like decode a field based on the type or 27content of some other field, or even the failure to decode some other field. 28It allows you to shape the results of a decode into a structure of your choice. 29 30Rather than unpacking a JSON value directly into an analogous OCaml structure; 31this module helps you to massage data into the shape you want by describing 32the transformations that need to take place. 33""" 34 35url { 36 src: 37 "https://github.com/dagoof/ocaml-json-decoder/releases/download/v0.1.1/json_decoder-0.1.1.tbz" 38 checksum: [ 39 "sha256=14a5077fce1665f60930aef9d67755ecd16fa71796d94b311207d4d30f444014" 40 "md5=04d5c7b9b55ec973bb88ac55789addef" 41 ] 42} 43synopsis: "" 44