this repo has no description
1opam-version: "2.0" 2synopsis: "Parse and generate YAML 1.1/1.2 files" 3description: """\ 4This is an OCaml library to parse and generate the YAML file 5format. It is intended to interoperable with the [Ezjsonm](https://github.com/mirage/ezjsonm) 6JSON handling library, if the simple common subset of Yaml 7is used. Anchors and other advanced Yaml features are not 8implemented in the JSON compatibility layer. 9 10The [Yaml module docs](http://anil-code.recoil.org/ocaml-yaml/yaml/Yaml/index.html) are browseable online.""" 11maintainer: "Anil Madhavapeddy <anil@recoil.org>" 12authors: [ 13 "Anil Madhavapeddy <anil@recoil.org>" 14 "Rizo Isrof <rizo@odis.io>" 15 "Patrick Ferris" 16 "favonia@gmail.com" 17 "Alan J Hu <alanh@ccs.neu.edu>" 18] 19license: "ISC" 20tags: ["org:mirage" "org:ocamllabs"] 21homepage: "https://github.com/avsm/ocaml-yaml" 22doc: "https://avsm.github.io/ocaml-yaml/" 23bug-reports: "https://github.com/avsm/ocaml-yaml/issues" 24depends: [ 25 "ocaml" {>= "4.08.0"} 26 "dune" {>= "1.3"} 27 "dune-configurator" 28 "ctypes" {>= "0.14.0"} 29 "bos" 30 "fmt" {with-test} 31 "logs" {with-test} 32 "mdx" {with-test} 33 "alcotest" {with-test} 34 "crowbar" {with-test} 35 "junit_alcotest" {with-test} 36 "ezjsonm" {with-test} 37] 38build: [ 39 ["dune" "subst"] {dev} 40 ["dune" "build" "-p" name "-j" jobs] 41 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 42] 43conflicts: [ "result" {< "1.5"} ] 44dev-repo: "git+https://github.com/avsm/ocaml-yaml.git" 45url { 46 src: 47 "https://github.com/avsm/ocaml-yaml/releases/download/v3.0.1/yaml-3.0.1.tbz" 48 checksum: [ 49 "sha256=92ed1ba429559a14b6b45e170f3482191791f99ac5189a5f20612e15bfbdf695" 50 "sha512=b5cd1724aefd049230c4c5e71ad047688c8f747d133572879f08c83bc6d1a29e5bae750115c232ecf58ee9ddee32ca9ac4471f40ff65cf81b785b03941401aca" 51 ] 52} 53x-commit-hash: "342aa9c83d787df6574188bb6812bcb903c6e7b1"