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.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/v2.0.1/yaml-v2.0.1.tbz" 44 checksum: [ 45 "sha256=a04f4d89783dbe24577d69b96bbb1d674f98a490bdf248bf782610284e9112e5" 46 "sha512=addf40e38600e3855597d774763e012a6bde4aea5267801ba04941a0ca1488214812bb21db16c808b5781fb30b92d2e7c5ada7924ad4d254b6aa2d3e8899fb8b" 47 ] 48}