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>

Changed files
+35
packages
crockford
crockford.dev
+35
packages/crockford/crockford.dev/opam
···
+
opam-version: "2.0"
+
synopsis: "Crockford Base32 encoding for OCaml"
+
description:
+
"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."
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
+
authors: ["Anil Madhavapeddy"]
+
license: "MIT"
+
homepage: "https://tangled.org/@anil.recoil.org/ocaml-crockford"
+
doc: "https://tangled.org/@anil.recoil.org/ocaml-crockford"
+
bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-crockford/issues"
+
depends: [
+
"dune" {>= "3.18"}
+
"ocaml" {>= "4.14.1"}
+
"odoc" {with-doc}
+
"alcotest" {with-test & >= "1.5.0"}
+
"cmdliner" {>= "1.1.0"}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
]
+
dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git"
+
url {
+
src: "git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main"
+
}