PASETO tokens for OCaml - v3.local (AES-256-CTR) and v4.local (XChaCha20)
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
dune-project
··· 17 17 (depends 18 18 (ocaml (>= 5.1)) 19 19 (dune (>= 3.0)) 20 - (crypto (>= 1.0)) 21 - (crypto-rng (>= 1.0)) 20 + (nox-crypto (>= 1.0)) 21 + (nox-crypto-rng (>= 1.0)) 22 22 (digestif (>= 1.0)) 23 23 (eqaf (>= 0.9)) 24 24 (fmt (>= 0.9))
+1 -1
fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries paseto alcobar crypto-rng.unix)) 3 + (libraries paseto alcobar nox-crypto-rng.unix)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
lib/dune
··· 1 1 (library 2 2 (name paseto) 3 3 (public_name paseto) 4 - (libraries crypto crypto-rng digestif eqaf base64 fmt json)) 4 + (libraries nox-crypto nox-crypto-rng digestif eqaf base64 fmt json))
+2 -2
paseto.opam
··· 12 12 depends: [ 13 13 "ocaml" {>= "5.1"} 14 14 "dune" {>= "3.21" & >= "3.0"} 15 - "crypto" {>= "1.0"} 16 - "crypto-rng" {>= "1.0"} 15 + "nox-crypto" {>= "1.0"} 16 + "nox-crypto-rng" {>= "1.0"} 17 17 "digestif" {>= "1.0"} 18 18 "eqaf" {>= "0.9"} 19 19 "fmt" {>= "0.9"}
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries paseto alcotest crypto-rng.unix)) 3 + (libraries paseto alcotest nox-crypto-rng.unix))