-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathyaml.opam
46 lines (45 loc) · 1.42 KB
/
yaml.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
35
36
37
38
39
40
41
42
43
44
45
46
opam-version: "2.0"
synopsis: "Parse and generate YAML 1.1/1.2 files"
description: """\
This is an OCaml library to parse and generate the YAML file
format. It is intended to interoperable with the [Ezjsonm](https://github.com/mirage/ezjsonm)
JSON handling library, if the simple common subset of Yaml
is used. Anchors and other advanced Yaml features are not
implemented in the JSON compatibility layer.
The [Yaml module docs](http://anil-code.recoil.org/ocaml-yaml/yaml/Yaml/index.html) are browseable online."""
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: [
"ocaml" {>= "4.13.0"}
"dune" {>= "2.0"}
"dune-configurator"
"ctypes" {>= "0.14.0"}
"bos"
"fmt" {with-test}
"logs" {with-test}
"mdx" {with-test & >= "2.1.0"}
"alcotest" {>="1.5.0" & with-test}
"crowbar" {with-test}
"junit_alcotest" {>= "2.0.2" & with-test}
"ezjsonm" {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"
conflicts:[
"result" {< "1.5"}
]