this repo has no description
1opam-version: "2.0"
2build: [
3 ["dune" "subst"] {dev}
4 ["dune" "build" "-p" name "-j" jobs]
5 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
6 ["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
7]
8maintainer: ["Steffen Smolka <smolka@cs.cornell.edu>"]
9authors: ["Steffen Smolka <smolka@cs.cornell.edu>"]
10bug-reports: "https://github.com/smolkaj/ocaml-parsing/issues"
11homepage: "https://github.com/smolkaj/ocaml-parsing"
12doc: "https://smolkaj.github.io/ocaml-parsing/nice_parser/"
13license: "MIT"
14dev-repo: "git+https://github.com/smolkaj/ocaml-parsing.git"
15synopsis: "Nice parsers without the boilerplate"
16description:
17 "Nice_parser wraps your {menhir, ocamlyacc}-generated parser in a sane interface, eliminating boilerplate code."
18depends: [
19 "ocaml" {>= "4.05.0"}
20 "dune" {>= "1.10"}
21 "menhir" {with-test}
22 "stdio"
23 "base" {with-test & < "v0.13"}
24 "ppx_jane" {with-test & < "v0.13"}
25 "ppx_inline_test" {with-test & < "v0.13"}
26 "ppx_expect" {with-test & < "v0.13"}
27 "odoc" {with-doc}
28]
29url {
30 src: "https://github.com/smolkaj/ocaml-parsing/archive/1.0.0.tar.gz"
31 checksum: [
32 "md5=56355492a47db73a577e2cc692d164ab"
33 "sha512=b6aec833d73da71468cad54696f8e1a2be5a6eb77437eca7e533d1f83af426c841f3789d6c71cff79bf5852e94008f6f03bdea1096e10747c00c1e46456a100f"
34 ]
35}