this repo has no description
1synopsis: "Parsing library based on Earley Algorithm" 2description: 3""" 4Earley is a parser combinator library base on Earley's algorithm. It 5is intended to be used in conjunction with an OCaml syntax extension 6which allows the definition of parsers inside the language. 7""" 8 9opam-version: "2.0" 10maintainer: "Rodolphe Lepigre <lepigre@mpi-sws.org>" 11bug-reports: "https://github.com/rlepigre/ocaml-earley/issues" 12homepage: "https://github.com/rlepigre/ocaml-earley" 13dev-repo: "git+https://github.com/rlepigre/ocaml-earley.git" 14authors: [ 15 "Christophe Raffalli <christophe@raffalli.eu>" 16 "Rodolphe Lepigre <lepigre@mpi-sws.org>" ] 17license: "CeCILL-B_V1" 18doc: "https://rlepigre.github.io/ocaml-earley/" 19 20depends: [ 21 "ocaml" { >= "4.07.0" } 22 "dune" { >= "2.7.0" } 23 "stdlib-shims" { >= "0.1.0" } 24 "odoc" { with-doc } 25] 26 27build: [ [ "dune" "build" "-p" name "-j" jobs ] ] 28run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ] 29url { 30 src: "https://github.com/rlepigre/ocaml-earley/archive/3.0.0.tar.gz" 31 checksum: [ 32 "md5=6b666c0392dc5b153f81c27d6ef49b12" 33 "sha512=a81d2bcf05088a3aaa5c3c0fb3a38306061a624ddf6d8bbefee1b4a17d7a5961ad1b12c0af9bd8dce86aa14b6f05f1956b3f7b5731f3c552bec7f4550182c398" 34 ] 35}