User authentication and session management for web applications
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
auth.opam
··· 10 10 depends: [ 11 11 "dune" {>= "3.21"} 12 12 "ocaml" {>= "5.1"} 13 - "crypto-rng" 13 + "nox-crypto-rng" 14 14 "csrf" 15 15 "fmt" 16 - "http" 16 + "nox-http" 17 17 "json" 18 18 "logs" 19 19 "oauth"
+2 -2
dune-project
··· 16 16 (tags (org:blacksun crypto network)) 17 17 (depends 18 18 (ocaml (>= 5.1)) 19 - crypto-rng 19 + nox-crypto-rng 20 20 csrf 21 21 fmt 22 - http 22 + nox-http 23 23 json logs 24 24 oauth 25 25 ohex
+2 -2
lib/dune
··· 7 7 sqlite 8 8 respond 9 9 requests 10 - http 10 + nox-http 11 11 json 12 - crypto-rng 12 + nox-crypto-rng 13 13 ohex 14 14 fmt 15 15 logs))
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries auth oauth csrf http alcotest crypto-rng.unix eio eio_main)) 3 + (libraries auth oauth csrf nox-http alcotest nox-crypto-rng.unix eio eio_main))