OCaml library for Crockford's Base32

deps

+3 -2
crockford.opam
···
"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: "ISC"
+
license: "MIT"
homepage: "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.9.0"}
+
"alcotest" {with-test & >= "1.5.0"}
"cmdliner" {>= "1.1.0"}
]
build: [
···
]
]
x-maintenance-intent: ["(latest)"]
+
dev-repo: "git+https://tangled.sh/@anil.recoil.org/ocaml-crockford"
+1
crockford.opam.template
···
+
dev-repo: "git+https://tangled.sh/@anil.recoil.org/ocaml-crockford"
+2 -2
dune-project
···
(generate_opam_files true)
-
(license ISC)
+
(license MIT)
(authors "Anil Madhavapeddy")
(homepage "https://tangled.org/@anil.recoil.org/ocaml-crockford")
(maintainers "Anil Madhavapeddy <anil@recoil.org>")
···
(depends
(ocaml (>= 4.14.1))
(odoc :with-doc)
-
(alcotest (and :with-test (>= 1.9.0)))
+
(alcotest (and :with-test (>= 1.5.0)))
(cmdliner (>= 1.1.0))))