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.13.0"} 26 "dune" {>= "2.0"} 27 "dune-configurator" 28 "ctypes" {>= "0.14.0"} 29 "bos" 30 "fmt" {with-test} 31 "logs" {with-test} 32 "mdx" {with-test & >= "2.1.0"} 33 "alcotest" {with-test} 34 "crowbar" {with-test} 35 "junit_alcotest" {with-test} 36 "ezjsonm" {with-test} 37] 38conflicts:[ 39 "result" {< "1.5"} 40] 41build: [ 42 ["dune" "subst"] {dev} 43 ["dune" "build" "-p" name "-j" jobs] 44 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 45] 46dev-repo: "git+https://github.com/avsm/ocaml-yaml.git" 47url { 48 src: 49 "https://github.com/avsm/ocaml-yaml/releases/download/v3.1.0/yaml-3.1.0.tbz" 50 checksum: [ 51 "sha256=d0a9e0ae2184a69e6d7202bfe3707d10439d31a71241860234b19f020452ecc7" 52 "sha512=69d0ff09abeac475981deefc5a2a09e8707aebe4c7e606671a5a8ffa7055d3519ee9e4823065d89c8c5eedb355015b8d9410286fac721af53d910d924a0711a3" 53 ] 54} 55x-commit-hash: "cc9d389b706f15df3578ba361e03f261972df9f4"