this repo has no description
1opam-version: "2.0" 2maintainer: "Anil Madhavapeddy <anil@recoil.org>" 3authors: "Anil Madhavapeddy <anil@recoil.org>" 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.13.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/v1.0.0/yaml-v1.0.0.tbz" 44 checksum: [ 45 "sha256=3776b5185e17912e99eb4c41b1f0481189ec8dff93ecc9cada2633986a0098ca" 46 "md5=17e1d206e8b47092864163afb616ebeb" 47 ] 48}