this repo has no description
1opam-version: "2.0"
2maintainer: "Anil Madhavapeddy <anil@recoil.org>"
3authors: ["Anil Madhavapeddy <anil@recoil.org>" "Rizo Isrof <rizo@odis.io>"]
4license: "ISC"
5tags: ["org:mirage" "org:ocamllabs"]
6homepage: "https://github.com/avsm/ocaml-yaml"
7doc: "https://avsm.github.io/ocaml-yaml/"
8bug-reports: "https://github.com/avsm/ocaml-yaml/issues"
9depends: [
10 "ocaml" {>= "4.03.0"}
11 "dune" {>= "1.3"}
12 "dune-configurator"
13 "ctypes" {>= "0.14.0"}
14 "ppx_sexp_conv" {>= "v0.9.0"}
15 "sexplib"
16 "rresult" {< "0.7.0"}
17 "fmt"
18 "logs"
19 "bos"
20 "mdx" {with-test}
21 "alcotest" {with-test}
22 "junit_alcotest" {with-test}
23 "ezjsonm" {with-test}
24]
25build: [
26 ["dune" "subst"] {dev}
27 ["dune" "build" "-p" name "-j" jobs]
28 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
29]
30dev-repo: "git+https://github.com/avsm/ocaml-yaml.git"
31synopsis: "Parse and generate YAML 1.1 files"
32description: """
33This is an OCaml library to parse and generate the YAML file
34format. It is intended to interoperable with the [Ezjsonm](https://github.com/mirage/ezjsonm)
35JSON handling library, if the simple common subset of Yaml
36is used. Anchors and other advanced Yaml features are not
37implemented in the JSON compatibility layer.
38
39The [Yaml module docs](http://anil-code.recoil.org/ocaml-yaml/yaml/Yaml/index.html) are browseable online.
40"""
41url {
42 src:
43 "https://github.com/avsm/ocaml-yaml/releases/download/v2.1.0/yaml-v2.1.0.tbz"
44 checksum: [
45 "sha256=05153817981ea97b62d8c49eeb42ba2e7efba82e61a3834b65213e59a0dee80d"
46 "sha512=339dc197615c8894d7e1031f425d328e6e81f6466688d30db1db21038cd49b33491980b49dccf3eb508bc6a90047296f801f3e03b9a521c00b0919c6a44c09e3"
47 ]
48}