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: "5b677e038141a34fe14edc4847442a8948ba3757" 33url { 34 src: 35 "https://github.com/bikallem/reparse/releases/download/v1.0.1/reparse-v1.0.1.tbz" 36 checksum: [ 37 "sha256=6ec365110148724034a6c3ff9518b9005448e389ad3f2cbc45eaca76f0af5354" 38 "sha512=87ebf7cab219d44633d53926b3aa25b2eec045f0e48a0ffaa7b345846db3325e6fa04d9aab6d5abdf9c36d545b7db3128335ab5c63ea1604f86f9d4ce5dc85d1" 39 ] 40}