DPoP (RFC 9449) proof-of-possession tokens
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.

+7 -7
+2 -2
dpop.opam
··· 13 13 "ocaml" {>= "5.1"} 14 14 "dune" {>= "3.21" & >= "3.21"} 15 15 "fmt" {>= "0.9"} 16 - "crypto-rng" {>= "0.11.0"} 17 - "crypto-ec" {>= "0.11.0"} 16 + "nox-crypto-rng" {>= "0.11.0"} 17 + "nox-crypto-ec" {>= "0.11.0"} 18 18 "digestif" {>= "1.0"} 19 19 "base64" {>= "3.0"} 20 20 "json" {>= "0.2.0"}
+1 -1
dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries dpop crypto-rng.unix)) 7 + (libraries dpop nox-crypto-rng.unix))
+2 -2
dune-project
··· 18 18 (ocaml (>= 5.1)) 19 19 (dune (>= 3.21)) 20 20 (fmt (>= 0.9)) 21 - (crypto-rng (>= 0.11.0)) 22 - (crypto-ec (>= 0.11.0)) 21 + (nox-crypto-rng (>= 0.11.0)) 22 + (nox-crypto-ec (>= 0.11.0)) 23 23 (digestif (>= 1.0)) 24 24 (base64 (>= 3.0)) 25 25 (json (>= 0.2.0))
+1 -1
lib/dune
··· 1 1 (library 2 2 (name dpop) 3 3 (public_name dpop) 4 - (libraries crypto-ec crypto-rng digestif base64 json fmt unix)) 4 + (libraries nox-crypto-ec nox-crypto-rng digestif base64 json fmt unix))
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries dpop alcotest crypto-rng.unix crypto-ec digestif base64 fmt)) 3 + (libraries dpop alcotest nox-crypto-rng.unix nox-crypto-ec digestif base64 fmt))