Google Docs API client for OCaml
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
+2 -2
bin/dune
··· 4 4 (package gdocs) 5 5 (libraries 6 6 cmdliner 7 - crypto-rng 8 - crypto-rng.unix 7 + nox-crypto-rng 8 + nox-crypto-rng.unix 9 9 eio 10 10 eio_main 11 11 fmt
+3 -3
dune-project
··· 27 27 (eio_main (>= 1.0)) 28 28 (fmt (>= 0.9)) 29 29 (gauth (>= 0.1)) 30 - (http (>= 0.1)) 30 + (nox-http (>= 0.1)) 31 31 (json (>= 0.2)) 32 32 (logs (>= 0.7)) 33 33 (oauth (>= 0.1)) 34 34 (requests (>= 0.1)) 35 - (xdge (>= 0.1)) 35 + (nox-xdge (>= 0.1)) 36 36 (alcotest :with-test) 37 - (crypto-rng :with-test) 37 + (nox-crypto-rng :with-test) 38 38 (odoc :with-doc) 39 39 uri 40 40 (mdx :with-test)))
+3 -3
gdocs.opam
··· 20 20 "eio_main" {>= "1.0"} 21 21 "fmt" {>= "0.9"} 22 22 "gauth" {>= "0.1"} 23 - "http" {>= "0.1"} 23 + "nox-http" {>= "0.1"} 24 24 "json" {>= "0.2"} 25 25 "logs" {>= "0.7"} 26 26 "oauth" {>= "0.1"} 27 27 "requests" {>= "0.1"} 28 - "xdge" {>= "0.1"} 28 + "nox-xdge" {>= "0.1"} 29 29 "alcotest" {with-test} 30 - "crypto-rng" {with-test} 30 + "nox-crypto-rng" {with-test} 31 31 "odoc" {with-doc} 32 32 "uri" 33 33 "mdx" {with-test}
+2 -2
lib/dune
··· 6 6 eio 7 7 fmt 8 8 gauth 9 - http 9 + nox-http 10 10 json 11 11 logs 12 12 oauth 13 13 requests 14 14 unix 15 15 uri 16 - xdge)) 16 + nox-xdge))