The opam repository for my Advent of Agentic Humps 2025

Add crockford.dev package

Crockford Base32 encoding for OCaml with ISO 7064 checksum support.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>

+35
+35
packages/crockford/crockford.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Crockford Base32 encoding for OCaml" 3 + description: 4 + "An OCaml implementation of Douglas Crockford's Base32 encoding with ISO 7064 checksum support. Provides encoding and decoding of int64 values to URI-friendly base32 strings, with optional checksum validation, padding, splitting, and random ID generation." 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy"] 7 + license: "MIT" 8 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-crockford" 9 + doc: "https://tangled.org/@anil.recoil.org/ocaml-crockford" 10 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-crockford/issues" 11 + depends: [ 12 + "dune" {>= "3.18"} 13 + "ocaml" {>= "4.14.1"} 14 + "odoc" {with-doc} 15 + "alcotest" {with-test & >= "1.5.0"} 16 + "cmdliner" {>= "1.1.0"} 17 + ] 18 + build: [ 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 + ] 32 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git" 33 + url { 34 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main" 35 + }