The opam repository for my Advent of Agentic Humps 2025

yamlt

+36
+36
packages/yamlt/yamlt.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "YAML codec using Jsont type descriptions" 3 + description: 4 + "Allows the same Jsont.t codec definitions to work for both JSON and YAML" 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy"] 7 + license: "ISC" 8 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-yamlt" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-yamlt/issues" 10 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git" 11 + depends: [ 12 + "dune" {>= "3.18"} 13 + "ocaml" {>= "4.14.0"} 14 + "yamlrw" 15 + "jsont" 16 + "bytesrw" 17 + "odoc" {with-doc} 18 + ] 19 + build: [ 20 + ["dune" "subst"] {dev} 21 + [ 22 + "dune" 23 + "build" 24 + "-p" 25 + name 26 + "-j" 27 + jobs 28 + "@install" 29 + "@runtest" {with-test} 30 + "@doc" {with-doc} 31 + ] 32 + ] 33 + x-maintenance-intent: ["(latest)"] 34 + url { 35 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git#main" 36 + }