The opam repository for my Advent of Agentic Humps 2025
1opam-version: "2.0" 2synopsis: "Unix I/O for Yamlrw" 3description: 4 "Unix file and channel operations for Yamlrw. Provides convenient functions for reading and writing YAML files using Unix I/O." 5maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6authors: ["Anil Madhavapeddy"] 7license: "ISC" 8homepage: "https://tangled.org/@anil.recoil.org/ocaml-yamlrw" 9bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-yamlrw/issues" 10dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git" 11depends: [ 12 "dune" {>= "3.18"} 13 "ocaml" {>= "4.14.0"} 14 "yamlrw" {= version} 15 "bytesrw" 16 "odoc" {with-doc} 17] 18build: [ 19 ["dune" "subst"] {dev} 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31] 32x-maintenance-intent: ["(latest)"] 33url { 34 src: "git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main" 35}