Native CBOR codec with type-safe combinators
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.

+9 -9
+1 -1
cbor.opam nox-cbor.opam
··· 23 23 "odoc" {with-doc} 24 24 "alcobar" {with-test} 25 25 "mdx" {with-test} 26 - "loc" 26 + "nox-loc" 27 27 ] 28 28 build: [ 29 29 ["dune" "subst"] {dev}
cbor.opam.template nox-cbor.opam.template
+1 -1
dune
··· 11 11 12 12 (mdx 13 13 (files README.md) 14 - (libraries cbor bytesrw)) 14 + (libraries nox-cbor bytesrw))
+3 -3
dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name cbor) 3 + (name nox-cbor) 4 4 5 5 (generate_opam_files true) 6 6 ··· 10 10 (source (tangled anil.recoil.org/ocaml-cbort)) 11 11 12 12 (package 13 - (name cbor) 13 + (name nox-cbor) 14 14 (synopsis "Native CBOR codec with type-safe combinators") 15 15 (tags (org:blacksun codec.binary)) 16 16 (description ··· 25 25 (odoc :with-doc) 26 26 (alcobar :with-test) 27 27 (mdx :with-test) 28 - loc)) 28 + nox-loc))
+1 -1
fuzz/dune
··· 10 10 11 11 (executable 12 12 (name fuzz) 13 - (libraries cbor bytesrw alcobar)) 13 + (libraries nox-cbor bytesrw alcobar)) 14 14 15 15 (rule 16 16 (alias runtest)
+2 -2
lib/dune
··· 1 1 (library 2 2 (name cbor) 3 - (public_name cbor) 3 + (public_name nox-cbor) 4 4 (libraries 5 5 bytesrw 6 6 zarith 7 7 fmt 8 - (re_export loc))) 8 + (re_export nox-loc)))
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries cbor alcotest bytesrw zarith ohex fmt) 3 + (libraries nox-cbor alcotest bytesrw zarith ohex fmt) 4 4 (deps 5 5 (source_tree ../test-vectors)))