Pure OCaml Yaml 1.2 reader and writer using Bytesrw
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "Pure OCaml YAML 1.2 parser and emitter"
4description:
5 "Yamlrw is a pure OCaml implementation of YAML 1.2 parsing and emission. It provides both a high-level JSON-compatible interface for simple data interchange and a lower-level streaming API for fine-grained control over parsing and emission. The library works on all OCaml platforms without C dependencies."
6maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
7authors: ["Anil Madhavapeddy"]
8license: "ISC"
9homepage: "https://tangled.org/@anil.recoil.org/ocaml-yamlrw"
10bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-yamlrw/issues"
11depends: [
12 "dune" {>= "3.18"}
13 "ocaml" {>= "4.14.0"}
14 "bytesrw"
15 "cmdliner"
16 "odoc" {with-doc}
17 "jsonm" {with-test}
18 "alcotest" {with-test}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34x-maintenance-intent: ["(latest)"]