-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreparse.opam
More file actions
34 lines (34 loc) · 823 Bytes
/
Copy pathreparse.opam
File metadata and controls
34 lines (34 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
opam-version: "2.0"
version: "3.1.0"
synopsis: "Recursive descent parsing library for ocaml"
description:
"Monadic, recursive descent based, parser construction library for ocaml. Comprehensively documented and tested"
maintainer: ["Bikal Lem"]
authors: ["Bikal Lem <gbikal@gmail.com>"]
license: "MPL-2.0"
homepage: "https://github.com/lemaetech/reparse"
bug-reports: "https://github.com/lemaetech/reparse/issues"
depends: [
"dune" {>= "2.9"}
"ocaml" {>= "4.10.0"}
"cstruct" {>= "6.0.0"}
"mdx" {with-test}
"popper" {with-test}
"ppx_deriving_popper" {with-test}
"ppx_deriving" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/lemaetech/reparse.git"