Minimal SQLite key-value store 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.

+4 -4
+1 -1
bin/dune
··· 2 2 (name sql) 3 3 (public_name sql) 4 4 (package sqlite) 5 - (libraries sqlite eio_main cmdliner vlog tty fmt logs)) 5 + (libraries sqlite eio_main cmdliner vlog nox-tty fmt logs))
+1 -1
dune-project
··· 26 26 (logs (>= 0.7)) 27 27 (cmdliner (>= 1.3)) 28 28 (vlog (>= 0.1)) 29 - (tty (>= 0.1)) 29 + (nox-tty (>= 0.1)) 30 30 (wal (>= 0.1)) 31 31 (menhir :build) 32 32 (alcotest :with-test)
+1 -1
sqlite.opam
··· 19 19 "logs" {>= "0.7"} 20 20 "cmdliner" {>= "1.3"} 21 21 "vlog" {>= "0.1"} 22 - "tty" {>= "0.1"} 22 + "nox-tty" {>= "0.1"} 23 23 "wal" {>= "0.1"} 24 24 "menhir" {build} 25 25 "alcotest" {with-test}
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries fmt sqlite btree alcotest eio_main memtrace)) 3 + (libraries fmt sqlite btree alcotest eio_main nox-memtrace))