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