Google API authentication helpers: service accounts and local OAuth
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.

+10 -10
+3 -3
dune-project
··· 28 28 (eio (>= 1.0)) 29 29 (fmt (>= 0.9)) 30 30 (json (>= 0.2)) 31 - (jwt (>= 0.1)) 31 + (nox-jwt (>= 0.1)) 32 32 (logs (>= 0.7)) 33 33 (oauth (>= 0.1)) 34 34 (ptime (>= 1.0)) 35 35 (requests (>= 0.1)) 36 36 (uri (>= 4.0)) 37 - (x509 (>= 1.0)) 37 + (nox-x509 (>= 1.0)) 38 38 (alcotest :with-test) 39 39 (eio_main :with-test) 40 40 (odoc :with-doc) 41 - crypto-pk 41 + nox-crypto-pk 42 42 (mdx :with-test)))
+3 -3
gauth.opam
··· 22 22 "eio" {>= "1.0"} 23 23 "fmt" {>= "0.9"} 24 24 "json" {>= "0.2"} 25 - "jwt" {>= "0.1"} 25 + "nox-jwt" {>= "0.1"} 26 26 "logs" {>= "0.7"} 27 27 "oauth" {>= "0.1"} 28 28 "ptime" {>= "1.0"} 29 29 "requests" {>= "0.1"} 30 30 "uri" {>= "4.0"} 31 - "x509" {>= "1.0"} 31 + "nox-x509" {>= "1.0"} 32 32 "alcotest" {with-test} 33 33 "eio_main" {with-test} 34 34 "odoc" {with-doc} 35 - "crypto-pk" 35 + "nox-crypto-pk" 36 36 "mdx" {with-test} 37 37 ] 38 38 build: [
+3 -3
lib/dune
··· 3 3 (public_name gauth) 4 4 (libraries 5 5 base64 6 - crypto-pk 6 + nox-crypto-pk 7 7 digestif 8 8 eio 9 9 fmt 10 10 json 11 - jwt 11 + nox-jwt 12 12 logs 13 13 oauth 14 14 ptime 15 15 requests 16 16 uri 17 - x509)) 17 + nox-x509))
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries gauth oauth requests x509 eio_main fmt alcotest crypto-rng.unix)) 3 + (libraries gauth oauth requests nox-x509 eio_main fmt alcotest nox-crypto-rng.unix))