DPoP (RFC 9449) proof-of-possession tokens
0
fork

Configure Feed

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

Prefix encoding packages with nox-

Extends the nox- prefix to the remaining encoding/codec packages —
none clash with opam-repository today, but the rule "blacksun forks
get nox-" applies the same way regardless of conflict status.

Renamed: json, xml, meta, opam, protobuf -> nox-*

+3 -3
+1 -1
dpop.opam
··· 17 17 "nox-crypto-ec" {>= "0.11.0"} 18 18 "digestif" {>= "1.0"} 19 19 "base64" {>= "3.0"} 20 - "json" {>= "0.2.0"} 20 + "nox-json" {>= "0.2.0"} 21 21 "alcotest" {with-test} 22 22 "mdx" {with-test} 23 23 "odoc" {with-doc}
+1 -1
dune-project
··· 22 22 (nox-crypto-ec (>= 0.11.0)) 23 23 (digestif (>= 1.0)) 24 24 (base64 (>= 3.0)) 25 - (json (>= 0.2.0)) 25 + (nox-json (>= 0.2.0)) 26 26 (alcotest :with-test) 27 27 (mdx :with-test) 28 28 (odoc :with-doc)))
+1 -1
lib/dune
··· 1 1 (library 2 2 (name dpop) 3 3 (public_name dpop) 4 - (libraries nox-crypto-ec nox-crypto-rng digestif base64 json fmt unix)) 4 + (libraries nox-crypto-ec nox-crypto-rng digestif base64 nox-json fmt unix))