this repo has no description
1opam-version: "2.0" 2synopsis: "Recursive descent parsing library for ocaml" 3description: 4 "reparse is an easy to learn and use parser combinator library. It is designed to aid authoring recursive descent style parsers." 5maintainer: ["Bikal Lem"] 6authors: ["Bikal Lem <gbikal@gmail.com>"] 7license: "MPL-2.0" 8homepage: "https://github.com/bikallem/reparse" 9bug-reports: "https://github.com/bikallem/reparse/issues" 10depends: [ 11 "ocaml" {>= "4.10.0"} 12 "dune" {>= "2.6"} 13 "sexplib0" 14 "ppx_sexp_conv" 15 "bigstringaf" 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/bikallem/reparse.git" 32x-commit-hash: "ee60333630d2f5dc8da0dcb3a13622f766580662" 33url { 34 src: 35 "https://github.com/bikallem/reparse/releases/download/v1.0.2/reparse-v1.0.2.tbz" 36 checksum: [ 37 "sha256=0af692029328d051fb3929ecc8d0d8a6c298859ac6c15c822125172ee6feec59" 38 "sha512=73d62cd87a22c999e5d4518915982ee5dc061baa2c85d54d95539782f5dd5fe5151d9758b9ca10d749459f7cd5b2542bf5b362a79f42f4069a1a46ff85bc9192" 39 ] 40}