tangled
alpha
login
or
join now
anil.recoil.org
/
ocaml-crockford
0
fork
atom
OCaml library for Crockford's Base32
0
fork
atom
overview
issues
pulls
pipelines
deps
anil.recoil.org
3 months ago
d0777f74
ce82f0c3
1/1
build.yml
success
53s
+6
-4
3 changed files
expand all
collapse all
unified
split
crockford.opam
crockford.opam.template
dune-project
+3
-2
crockford.opam
···
5
5
"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."
6
6
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
7
7
authors: ["Anil Madhavapeddy"]
8
8
-
license: "ISC"
8
8
+
license: "MIT"
9
9
homepage: "https://tangled.org/@anil.recoil.org/ocaml-crockford"
10
10
bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-crockford/issues"
11
11
depends: [
12
12
"dune" {>= "3.18"}
13
13
"ocaml" {>= "4.14.1"}
14
14
"odoc" {with-doc}
15
15
-
"alcotest" {with-test & >= "1.9.0"}
15
15
+
"alcotest" {with-test & >= "1.5.0"}
16
16
"cmdliner" {>= "1.1.0"}
17
17
]
18
18
build: [
···
30
30
]
31
31
]
32
32
x-maintenance-intent: ["(latest)"]
33
33
+
dev-repo: "git+https://tangled.sh/@anil.recoil.org/ocaml-crockford"
+1
crockford.opam.template
···
1
1
+
dev-repo: "git+https://tangled.sh/@anil.recoil.org/ocaml-crockford"
+2
-2
dune-project
···
4
4
5
5
(generate_opam_files true)
6
6
7
7
-
(license ISC)
7
7
+
(license MIT)
8
8
(authors "Anil Madhavapeddy")
9
9
(homepage "https://tangled.org/@anil.recoil.org/ocaml-crockford")
10
10
(maintainers "Anil Madhavapeddy <anil@recoil.org>")
···
22
22
(depends
23
23
(ocaml (>= 4.14.1))
24
24
(odoc :with-doc)
25
25
-
(alcotest (and :with-test (>= 1.9.0)))
25
25
+
(alcotest (and :with-test (>= 1.5.0)))
26
26
(cmdliner (>= 1.1.0))))