this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/janestreet/re_parser"
5bug-reports: "https://github.com/janestreet/re_parser/issues"
6dev-repo: "git+https://github.com/janestreet/re_parser.git"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/re_parser/index.html"
8license: "MIT"
9build: [
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "4.14.0"}
14 "base" {>= "v0.16" & < "v0.17"}
15 "regex_parser_intf" {>= "v0.16" & < "v0.17"}
16 "dune" {>= "2.0.0"}
17 "re" {>= "1.10.3"}
18]
19synopsis: "Typed parsing using regular expressions."
20description: "
21
22Applicative-based interface for parsing using regular expressions from `ocaml-re`.
23Shares its interface with `Re2.Parser`.
24"
25url {
26src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/re_parser-v0.16.0.tar.gz"
27checksum: "sha256=65e635a7996f47084d9283b85a2177dc270862e4dfa86249a904197253c2dec5"
28}