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.8"} 12 "ocaml" {>= "4.10.0"} 13 "cstruct" {>= "6.0.0"} 14 "mdx" {with-test} 15 "popper" {with-test} 16 "ppx_deriving_popper" {with-test} 17 "ppx_deriving" {with-test} 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/lemaetech/reparse.git" 34url { 35 src: 36 "https://github.com/lemaetech/reparse/releases/download/v3.0.0/reparse-v3.0.0.tbz" 37 checksum: [ 38 "sha256=0b525184593b324b1d93dae6c45179c9e38455a3d6f5fdc9f17e063bfdb09b0a" 39 "sha512=acac7a83e2f77297da3bad1a5ea217fe41bafed1f0d5f044ebf524fee19663661fe4aa4d4dfd2b94ff46033436cc25f5ea7bd3a5a08e58d1a573218746a305cb" 40 ] 41} 42x-commit-hash: "0c91626d3588040a5191f265bb89ddbeb7dd24ab"