-
Notifications
You must be signed in to change notification settings - Fork 1
/
jsonxt.opam
27 lines (25 loc) · 944 Bytes
/
jsonxt.opam
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
opam-version: "1.2"
maintainer: "Steve Bleazard <[email protected]>"
authors: "Steve Bleazard <[email protected]>"
homepage: "https://github.com/stevebleazard/ocaml-jsonxt"
bug-reports: "https://github.com/stevebleazard/ocaml-jsonxt/issues"
license: "MIT"
dev-repo: "https://github.com/stevebleazard/ocaml-jsonxt.git"
doc: "https://stevebleazard.github.io/ocaml-jsonxt/"
synopsis: "JSON parsers parsers for string, files and more"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
]
available: [arch != "ppc64"]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "2.0"}
"alcotest" {with-test}
"cmdliner" {with-test}
"core_kernel" {with-test}
"fmt" {with-test}
"ppx_sexp_conv" {with-test}
]