-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathyaml-sexp.opam
34 lines (34 loc) · 954 Bytes
/
yaml-sexp.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
28
29
30
31
32
33
34
opam-version: "2.0"
synopsis: "Parse and generate YAML 1.1 files"
description: "ocaml-yaml with sexp support"
maintainer: "Anil Madhavapeddy <[email protected]>"
authors: [
"Anil Madhavapeddy <[email protected]>"
"Rizo Isrof <[email protected]>"
"Patrick Ferris"
"Alan J Hu <[email protected]>"
]
license: "ISC"
tags: ["org:mirage" "org:ocamllabs"]
homepage: "https://github.com/avsm/ocaml-yaml"
doc: "https://avsm.github.io/ocaml-yaml/"
bug-reports: "https://github.com/avsm/ocaml-yaml/issues"
depends: [
"dune" {>= "2.0"}
"ppx_sexp_conv" {>= "v0.9.0"}
"sexplib"
"yaml" {= version}
"mdx" {with-test & >= "2.1.0"}
"alcotest" {with-test}
"crowbar" {with-test}
"junit_alcotest" {with-test}
"ezjsonm" {with-test}
"bos" {with-test}
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/avsm/ocaml-yaml.git"