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.9"} 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.1.0/reparse-v3.1.0.tbz" 37 checksum: [ 38 "sha256=60e57fdac0ae0b68b41a0cb5bd50327c84b306d40f74e9c21925c08049703e1d" 39 "sha512=329be459bbf3f354119298fcf4ac22c1a400b9acd213267e732b76bcf2add81eb80c713aec2b007ba9a47ace075a67467c10e305fad7fd2a63a5456f668b35ab" 40 ] 41} 42x-commit-hash: "12d53ec3c2a6a5b44bb68a2b47f9d5f0bcba6206"