CRC checksums (CRC-16, CRC-32, CRC-32C) for OCaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prefix all blacksun packages with nox-

Renames 35 packages to make blacksun forks distinguishable from their
opam-repository upstreams. Module names (Git.x, Tls.x, ...) stay bare;
opam package names and dune (public_name) findlib references move to
nox-X. After this commit, zero local package names overlap with
opam-repository.

Renamed:
- nox-git, nox-irmin
- nox-crypto, nox-crypto-pk, nox-crypto-rng, nox-crypto-ec
- nox-tls, nox-tls-eio, nox-tar, nox-tar-eio, nox-tty, nox-tty-eio
- nox-arp, nox-ca-certs, nox-cbor, nox-cookie, nox-crc, nox-csv
- nox-gpt, nox-hkdf, nox-http, nox-jwt, nox-kdf, nox-loc
- nox-memtrace, nox-pds, nox-sexp, nox-slack, nox-toml
- nox-websocket, nox-x509, nox-xdge, nox-yaml

Also drops orphan tar-mirage and tar-unix opam templates that had no
matching package stanza.

+8 -8
+1 -1
bench/dune
··· 1 1 (executable 2 2 (name bench) 3 - (libraries crc fmt unix)) 3 + (libraries nox-crc fmt unix))
crc.opam nox-crc.opam
crc.opam.template nox-crc.opam.template
+1 -1
dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries crc)) 7 + (libraries nox-crc))
+2 -2
dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name crc) 4 + (name nox-crc) 5 5 6 6 (generate_opam_files true) 7 7 ··· 12 12 (source (tangled gazagnaire.org/ocaml-crc)) 13 13 14 14 (package 15 - (name crc) 15 + (name nox-crc) 16 16 (synopsis "CRC checksums for OCaml") 17 17 (tags (org:blacksun codec.binary)) 18 18 (description
+1 -1
fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries crc alcobar)) 3 + (libraries nox-crc alcobar)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
lib/dune
··· 1 1 (library 2 2 (name crc) 3 - (public_name crc) 3 + (public_name nox-crc) 4 4 (js_of_ocaml 5 5 (javascript_files crc_stubs.js)) 6 6 (foreign_stubs
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries crc alcotest memtrace)) 3 + (libraries nox-crc alcotest nox-memtrace))
+1 -1
test/interop/crcmod/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries crc csv alcotest) 3 + (libraries nox-crc nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))