The opam repository for my Advent of Agentic Humps 2025

more

+81
+38
packages/cbort/cbort.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Native CBOR codec with type-safe combinators" 3 + description: """ 4 + Type-safe CBOR (RFC 8949) encoding and decoding using a combinator-based 5 + approach. Define codecs once and use them for both encoding and decoding 6 + OCaml values to and from CBOR binary format.""" 7 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 8 + authors: ["Anil Madhavapeddy"] 9 + license: "ISC" 10 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-cbort" 11 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-cbort/issues" 12 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git" 13 + depends: [ 14 + "dune" {>= "3.20"} 15 + "ocaml" {>= "5.1"} 16 + "bytesrw" {>= "0.2"} 17 + "zarith" {>= "1.12"} 18 + "odoc" {with-doc} 19 + "crowbar" {>= "0.2" & with-test} 20 + ] 21 + build: [ 22 + ["dune" "subst"] {dev} 23 + [ 24 + "dune" 25 + "build" 26 + "-p" 27 + name 28 + "-j" 29 + jobs 30 + "@install" 31 + "@runtest" {with-test} 32 + "@doc" {with-doc} 33 + ] 34 + ] 35 + url { 36 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main" 37 + } 38 + x-maintenance-intent: ["(latest)"]
+43
packages/mqtte/mqtte.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "MQTT protocol library for OCaml" 3 + description: "An MQTT v3.1.1 and v5.0 protocol library with Eio-based client" 4 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 5 + authors: ["Anil Madhavapeddy"] 6 + license: "ISC" 7 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-mqtte" 8 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-mqtte/issues" 9 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git" 10 + depends: [ 11 + "dune" {>= "3.20"} 12 + "ocaml" {>= "5.1"} 13 + "eio" {>= "1.0"} 14 + "eio_main" {>= "1.0"} 15 + "bytesrw" {>= "0.1"} 16 + "bytesrw-eio" {>= "0.1"} 17 + "conpool" 18 + "ca-certs" 19 + "cmdliner" {>= "1.2"} 20 + "tls" 21 + "logs" {>= "0.7"} 22 + "fmt" {>= "0.9"} 23 + "alcotest" {with-test} 24 + "odoc" {with-doc} 25 + ] 26 + build: [ 27 + ["dune" "subst"] {dev} 28 + [ 29 + "dune" 30 + "build" 31 + "-p" 32 + name 33 + "-j" 34 + jobs 35 + "@install" 36 + "@runtest" {with-test} 37 + "@doc" {with-doc} 38 + ] 39 + ] 40 + url { 41 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main" 42 + } 43 + x-maintenance-intent: ["(latest)"]