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 "bigstringaf" 14] 15build: [ 16 ["dune" "subst"] {dev} 17 [ 18 "dune" 19 "build" 20 "-p" 21 name 22 "-j" 23 jobs 24 "@install" 25 "@runtest" {with-test} 26 "@doc" {with-doc} 27 ] 28] 29dev-repo: "git+https://github.com/bikallem/reparse.git" 30x-commit-hash: "7b6350e65697df27213b777606ed8f66510870d7" 31url { 32 src: 33 "https://github.com/bikallem/reparse/releases/download/v1.0.0/reparse-v1.0.0.tbz" 34 checksum: [ 35 "sha256=f0e4432d11a2793b4f2f115df93df23573c774d5b84abc051844c2fcbc9ffc7f" 36 "sha512=48c498fbcc424e4ff3aa6210ddf0cbcf9a0f79c531253a832712824ddc3f4d6de3c95acb0aeb216461f0e70af64f763f857f9b405b6f857e32038fcfa5c364a6" 37 ] 38}