OAuth 2.0 authorization and token exchange
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
+2 -2
dune-project
··· 20 20 (fmt (>= 0.9)) 21 21 (uri (>= 4.0)) 22 22 (json (>= 0.1.0)) 23 - (crypto-rng (>= 0.11.0)) 23 + (nox-crypto-rng (>= 0.11.0)) 24 24 (dpop (>= 0.1.0)) 25 25 (digestif (>= 1.0)) 26 26 (eio (>= 1.0)) 27 27 (base64 (>= 3.0)) 28 28 (eqaf (>= 0.9)) 29 29 (requests (>= 0.1.0)) 30 - (http (>= 0.1.0)) 30 + (nox-http (>= 0.1.0)) 31 31 (ohex (>= 0.2)) 32 32 (logs (>= 0.7)) 33 33 (alcotest :with-test)
+1 -1
fuzz/dune
··· 5 5 6 6 (executable 7 7 (name fuzz) 8 - (libraries oauth alcobar crypto-rng.unix)) 8 + (libraries oauth alcobar nox-crypto-rng.unix)) 9 9 10 10 (rule 11 11 (alias runtest)
+2 -2
lib/dune
··· 4 4 (libraries 5 5 uri 6 6 json 7 - crypto-rng 7 + nox-crypto-rng 8 8 digestif 9 9 dpop 10 10 base64 11 11 eio 12 12 eqaf 13 13 requests 14 - http 14 + nox-http 15 15 fmt 16 16 ohex 17 17 logs))
+2 -2
oauth.opam
··· 15 15 "fmt" {>= "0.9"} 16 16 "uri" {>= "4.0"} 17 17 "json" {>= "0.1.0"} 18 - "crypto-rng" {>= "0.11.0"} 18 + "nox-crypto-rng" {>= "0.11.0"} 19 19 "dpop" {>= "0.1.0"} 20 20 "digestif" {>= "1.0"} 21 21 "eio" {>= "1.0"} 22 22 "base64" {>= "3.0"} 23 23 "eqaf" {>= "0.9"} 24 24 "requests" {>= "0.1.0"} 25 - "http" {>= "0.1.0"} 25 + "nox-http" {>= "0.1.0"} 26 26 "ohex" {>= "0.2"} 27 27 "logs" {>= "0.7"} 28 28 "alcotest" {with-test}
+2 -2
test/dune
··· 3 3 (libraries 4 4 oauth 5 5 dpop 6 - crypto-ec 6 + nox-crypto-ec 7 7 digestif 8 8 base64 9 9 fmt 10 10 requests 11 11 eio_main 12 12 alcotest 13 - crypto-rng.unix 13 + nox-crypto-rng.unix 14 14 uri) 15 15 (deps ../README.md ../oauth.opam dune ../fuzz/dune))