this repo has no description
1opam-version: "2.0" 2synopsis: "Recursive descent parsing library for ocaml" 3description: 4 "Monadic, recursive descent based, parser construction library for ocaml. Comprehensively documented and tested." 5maintainer: ["Bikal Lem"] 6authors: ["Bikal Lem <gbikal@gmail.com>"] 7license: "MPL-2.0" 8homepage: "https://github.com/lemaetech/reparse" 9bug-reports: "https://github.com/lemaetech/reparse/issues" 10depends: [ 11 "dune" {>= "2.7"} 12 "ocaml" {>= "4.10.0"} 13 "base" 14 "alcotest" {with-test} 15 "odoc" {with-doc} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "@install" 27 "@doc" {with-doc} 28 ] 29] 30dev-repo: "git+https://github.com/lemaetech/reparse.git" 31x-commit-hash: "89ca9788a0a580459f6941a0db9d1a4f2815f052" 32url { 33 src: 34 "https://github.com/lemaetech/reparse/releases/download/v2.1.0/reparse-unix-v2.1.0.tbz" 35 checksum: [ 36 "sha256=51f7bb7087679e7e8dabf237a2e080094391bc626476c4c614515a14a3da6919" 37 "sha512=b886a2261131b7ccf5d38def08a57724a8eb1a8b95d299f452659b874f7d186aa1e25e77aebfa921b269804f1d9895c0e124c31bbd5d204af9c5dd9b1c720ebf" 38 ] 39}