My own corner of monopam
2
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.

+1005 -1006
+1 -1
bottler/bin/dune
··· 16 16 logs 17 17 astring 18 18 monopam-info 19 - memtrace)) 19 + nox-memtrace))
+6 -6
bottler/bottler.opam
··· 21 21 "requests" 22 22 "eio" 23 23 "eio_main" 24 - "tar" 25 - "tar-eio" 24 + "nox-tar" 25 + "nox-tar-eio" 26 26 "bytesrw" 27 - "yaml" 27 + "nox-yaml" 28 28 "json" 29 29 "bos" {>= "0.2"} 30 30 "cmdliner" {>= "1.3.0"} ··· 34 34 "fpath" {>= "0.7"} 35 35 "digestif" {>= "1.0"} 36 36 "astring" {>= "0.8"} 37 - "tty" 38 - "tty-eio" 37 + "nox-tty" 38 + "nox-tty-eio" 39 39 "monopam-info" 40 - "memtrace" 40 + "nox-memtrace" 41 41 "alcotest" {with-test} 42 42 "mdx" {with-test} 43 43 "alcobar" {with-test}
+6 -6
bottler/dune-project
··· 29 29 requests 30 30 eio 31 31 eio_main 32 - tar 33 - tar-eio 32 + nox-tar 33 + nox-tar-eio 34 34 bytesrw 35 - yaml 35 + nox-yaml 36 36 json (bos (>= 0.2)) 37 37 (cmdliner (>= 1.3.0)) 38 38 (fmt (>= 0.9)) ··· 41 41 (fpath (>= 0.7)) 42 42 (digestif (>= 1.0)) 43 43 (astring (>= 0.8)) 44 - tty 45 - tty-eio 44 + nox-tty 45 + nox-tty-eio 46 46 monopam-info 47 - memtrace 47 + nox-memtrace 48 48 (alcotest :with-test) 49 49 (mdx :with-test) 50 50 (alcobar :with-test)))
+6 -6
bottler/lib/dune
··· 7 7 s3 8 8 requests 9 9 eio 10 - tar 11 - tar-eio 10 + nox-tar 11 + nox-tar-eio 12 12 bytesrw 13 13 bytesrw.zlib 14 - yaml 15 - yaml.json 14 + nox-yaml 15 + nox-yaml.json 16 16 json 17 17 bos 18 18 fmt ··· 20 20 logs 21 21 digestif 22 22 astring 23 - tty 24 - tty-eio 23 + nox-tty 24 + nox-tty-eio 25 25 unix))
+1 -1
bottler/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries bottler homebrew yaml yaml.json alcotest test_helpers)) 3 + (libraries bottler homebrew nox-yaml nox-yaml.json alcotest test_helpers))
+3 -3
ca-certs/ca-certs.opam ca-certs/nox-ca-certs.opam
··· 22 22 "ptime" 23 23 "logs" 24 24 "digestif" {>= "1.2.0"} 25 - "crypto" {>= "1.0.0"} 26 - "x509" {>= "1.0.0"} 27 - "tls" {with-test} 25 + "nox-crypto" {>= "1.0.0"} 26 + "nox-x509" {>= "1.0.0"} 27 + "nox-tls" {with-test} 28 28 "ocaml" {>= "4.13.0"} 29 29 "ohex" {>= "0.2.0"} 30 30 "alcotest" {with-test}
ca-certs/ca-certs.opam.template ca-certs/nox-ca-certs.opam.template
+1 -1
ca-certs/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries ca-certs tls)) 7 + (libraries nox-ca-certs nox-tls))
+5 -5
ca-certs/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name ca-certs) 3 + (name nox-ca-certs) 4 4 5 5 (generate_opam_files true) 6 6 (source (github mirage/ca-certs)) ··· 14 14 "Thomas Gazagnaire <thomas@gazagnaire.org>") 15 15 16 16 (package 17 - (name ca-certs) 17 + (name nox-ca-certs) 18 18 (depends 19 19 bos fpath ptime logs 20 20 (digestif (>= 1.2.0)) 21 - (crypto (>= 1.0.0)) 22 - (x509 (>= 1.0.0)) 23 - (tls :with-test) 21 + (nox-crypto (>= 1.0.0)) 22 + (nox-x509 (>= 1.0.0)) 23 + (nox-tls :with-test) 24 24 (ocaml (>= 4.13.0)) 25 25 (ohex (>= 0.2.0)) 26 26 (alcotest :with-test)
+2 -2
ca-certs/lib/dune
··· 1 1 (library 2 2 (name ca_certs) 3 - (public_name ca-certs) 4 - (libraries crypto x509 bos fpath logs ptime.clock.os digestif ohex) 3 + (public_name nox-ca-certs) 4 + (libraries nox-crypto nox-x509 bos fpath logs ptime.clock.os digestif ohex) 5 5 (foreign_stubs 6 6 (language c) 7 7 (names ca_certs_stubs))
+1 -1
ca-certs/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries ca-certs fmt alcotest vlog)) 3 + (libraries nox-ca-certs fmt alcotest vlog))
+1 -1
dupfind/bin/dune
··· 2 2 (name main) 3 3 (public_name dupfind) 4 4 (package dupfind) 5 - (libraries dupfind eio_main cmdliner fpath memtrace vlog tty logs)) 5 + (libraries dupfind eio_main cmdliner fpath nox-memtrace vlog nox-tty logs))
+2 -2
dupfind/dune-project
··· 23 23 cmdliner 24 24 eio 25 25 eio_main 26 - tty 26 + nox-tty 27 27 vlog 28 28 logs 29 29 fmt ··· 31 31 bos 32 32 re 33 33 (mdx :with-test) 34 - json memtrace)) 34 + json nox-memtrace))
+2 -2
dupfind/dupfind.opam
··· 15 15 "cmdliner" 16 16 "eio" 17 17 "eio_main" 18 - "tty" 18 + "nox-tty" 19 19 "vlog" 20 20 "logs" 21 21 "fmt" ··· 24 24 "re" 25 25 "mdx" {with-test} 26 26 "json" 27 - "memtrace" 27 + "nox-memtrace" 28 28 "odoc" {with-doc} 29 29 ] 30 30 build: [
+1 -1
dupfind/lib/dune
··· 1 1 (library 2 2 (name dupfind) 3 3 (public_name dupfind) 4 - (libraries compiler-libs.common eio logs vlog fmt fpath bos re json tty)) 4 + (libraries compiler-libs.common eio logs vlog fmt fpath bos re json nox-tty))
+5 -5
irmin/bin/dune
··· 1 1 (executable 2 2 (name main) 3 - (public_name irmin) 3 + (public_name nox-irmin) 4 4 (libraries 5 - irmin 5 + nox-irmin 6 6 irmin_git 7 7 digestif 8 - git 8 + nox-git 9 9 fpath 10 10 atp 11 11 atp-xrpc-server 12 - pds 12 + nox-pds 13 13 respond 14 14 magic-mime 15 15 tw ··· 22 22 logs 23 23 cmdliner 24 24 vlog 25 - tty 25 + nox-tty 26 26 eio_main 27 27 fmt 28 28 base64
+13 -13
irmin/dune
··· 5 5 (mdx 6 6 (files README.md) 7 7 (libraries 8 - irmin 9 - irmin.admin 10 - irmin.cbor 11 - irmin.git 12 - irmin.gzip 13 - irmin.json 14 - irmin.mime 15 - irmin.oci 16 - irmin.tar 17 - irmin.text 18 - irmin.toml 19 - irmin.ui 20 - irmin.yaml 8 + nox-irmin 9 + nox-irmin.admin 10 + nox-irmin.cbor 11 + nox-irmin.git 12 + nox-irmin.gzip 13 + nox-irmin.json 14 + nox-irmin.mime 15 + nox-irmin.oci 16 + nox-irmin.tar 17 + nox-irmin.text 18 + nox-irmin.toml 19 + nox-irmin.ui 20 + nox-irmin.yaml 21 21 eio_main 22 22 eio 23 23 eio.core
+9 -9
irmin/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name irmin) 3 + (name nox-irmin) 4 4 (version 2.0.0~dev) 5 5 6 6 (generate_opam_files true) ··· 12 12 (source (tangled gazagnaire.org/irmin)) 13 13 14 14 (package 15 - (name irmin) 15 + (name nox-irmin) 16 16 (synopsis "Content-addressable store with Git and ATProto MST support") 17 17 (tags (org:blacksun storage git merkle atproto)) 18 18 (description ··· 28 28 (fmt (>= 0.9)) 29 29 (fpath (>= 0.7)) 30 30 (logs (>= 0.7)) 31 - (git (>= 0.1)) 31 + (nox-git (>= 0.1)) 32 32 (atp (>= 0.1)) 33 33 (atp-xrpc-server (>= 0.1)) 34 - (pds (>= 0.1)) 35 - (cbor (>= 0.1)) 34 + (nox-pds (>= 0.1)) 35 + (nox-cbor (>= 0.1)) 36 36 (merge3 (>= 0.1)) 37 37 (base64 (>= 3.5)) 38 38 (alcotest :with-test) ··· 43 43 cmdliner 44 44 decompress 45 45 json 46 - loc 46 + nox-loc 47 47 magic-mime 48 48 monopam-info 49 49 oauth 50 50 requests 51 51 respond 52 - toml 53 - tty 52 + nox-toml 53 + nox-tty 54 54 tw 55 55 vlog 56 56 (mdx :with-test) 57 - yaml)) 57 + nox-yaml))
+1 -1
irmin/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries irmin irmin_tar alcobar digestif)) 3 + (libraries nox-irmin irmin_tar alcobar digestif)) 4 4 5 5 (rule 6 6 (alias runtest)
+7 -7
irmin/irmin.opam irmin/nox-irmin.opam
··· 21 21 "fmt" {>= "0.9"} 22 22 "fpath" {>= "0.7"} 23 23 "logs" {>= "0.7"} 24 - "git" {>= "0.1"} 24 + "nox-git" {>= "0.1"} 25 25 "atp" {>= "0.1"} 26 26 "atp-xrpc-server" {>= "0.1"} 27 - "pds" {>= "0.1"} 28 - "cbor" {>= "0.1"} 27 + "nox-pds" {>= "0.1"} 28 + "nox-cbor" {>= "0.1"} 29 29 "merge3" {>= "0.1"} 30 30 "base64" {>= "3.5"} 31 31 "alcotest" {with-test} ··· 36 36 "cmdliner" 37 37 "decompress" 38 38 "json" 39 - "loc" 39 + "nox-loc" 40 40 "magic-mime" 41 41 "monopam-info" 42 42 "oauth" 43 43 "requests" 44 44 "respond" 45 - "toml" 46 - "tty" 45 + "nox-toml" 46 + "nox-tty" 47 47 "tw" 48 48 "vlog" 49 49 "mdx" {with-test} 50 - "yaml" 50 + "nox-yaml" 51 51 "odoc" {with-doc} 52 52 ] 53 53 build: [
irmin/irmin.opam.template irmin/nox-irmin.opam.template
+2 -2
irmin/lib/admin/dune
··· 1 1 (library 2 2 (name irmin_admin) 3 - (public_name irmin.admin) 4 - (libraries toml)) 3 + (public_name nox-irmin.admin) 4 + (libraries nox-toml))
+1 -1
irmin/lib/atproto/dune
··· 1 1 (library 2 2 (name irmin_atproto) 3 - (libraries irmin atp mst hermest pds eio digestif fmt bytesrw)) 3 + (libraries nox-irmin atp mst hermest nox-pds eio digestif fmt bytesrw))
+2 -2
irmin/lib/cbor/dune
··· 1 1 (library 2 2 (name irmin_cbor) 3 - (public_name irmin.cbor) 4 - (libraries irmin cbor digestif)) 3 + (public_name nox-irmin.cbor) 4 + (libraries nox-irmin nox-cbor digestif))
+1 -1
irmin/lib/dune
··· 1 1 (library 2 2 (name irmin) 3 - (public_name irmin) 3 + (public_name nox-irmin) 4 4 (libraries eio fpath digestif fmt logs bytesrw merge3 magic-mime))
+2 -2
irmin/lib/git/dune
··· 1 1 (library 2 2 (name irmin_git) 3 - (public_name irmin.git) 4 - (libraries irmin git eio fpath digestif fmt bytesrw)) 3 + (public_name nox-irmin.git) 4 + (libraries nox-irmin nox-git eio fpath digestif fmt bytesrw))
+2 -2
irmin/lib/gzip/dune
··· 1 1 (library 2 2 (name irmin_gzip) 3 - (public_name irmin.gzip) 4 - (libraries irmin decompress.gz decompress.de bigstringaf)) 3 + (public_name nox-irmin.gzip) 4 + (libraries nox-irmin decompress.gz decompress.de bigstringaf))
+2 -2
irmin/lib/json/dune
··· 1 1 (library 2 2 (name irmin_json) 3 - (public_name irmin.json) 4 - (libraries irmin json digestif)) 3 + (public_name nox-irmin.json) 4 + (libraries nox-irmin json digestif))
+2 -2
irmin/lib/mime/dune
··· 1 1 (library 2 2 (name irmin_mime) 3 - (public_name irmin.mime) 3 + (public_name nox-irmin.mime) 4 4 (libraries 5 - irmin 5 + nox-irmin 6 6 irmin_json 7 7 irmin_yaml 8 8 irmin_toml
+2 -2
irmin/lib/oci/dune
··· 1 1 (library 2 2 (name irmin_oci) 3 - (public_name irmin.oci) 4 - (libraries irmin digestif json fmt)) 3 + (public_name nox-irmin.oci) 4 + (libraries nox-irmin digestif json fmt))
+2 -2
irmin/lib/tar/dune
··· 1 1 (library 2 2 (name irmin_tar) 3 - (public_name irmin.tar) 4 - (libraries irmin digestif)) 3 + (public_name nox-irmin.tar) 4 + (libraries nox-irmin digestif))
+2 -2
irmin/lib/text/dune
··· 1 1 (library 2 2 (name irmin_text) 3 - (public_name irmin.text) 4 - (libraries irmin)) 3 + (public_name nox-irmin.text) 4 + (libraries nox-irmin))
+2 -2
irmin/lib/toml/dune
··· 1 1 (library 2 2 (name irmin_toml) 3 - (public_name irmin.toml) 4 - (libraries irmin toml digestif)) 3 + (public_name nox-irmin.toml) 4 + (libraries nox-irmin nox-toml digestif))
+1 -1
irmin/lib/ui/dune
··· 1 1 (library 2 2 (name irmin_ui) 3 - (public_name irmin.ui) 3 + (public_name nox-irmin.ui) 4 4 (libraries tw tw.html) 5 5 (wrapped false))
+2 -2
irmin/lib/yaml/dune
··· 1 1 (library 2 2 (name irmin_yaml) 3 - (public_name irmin.yaml) 4 - (libraries irmin yaml digestif)) 3 + (public_name nox-irmin.yaml) 4 + (libraries nox-irmin nox-yaml digestif))
+1 -1
irmin/test/bench/dune
··· 1 1 (executable 2 2 (name bench) 3 - (libraries irmin irmin_git git eio_main memtrace digestif json)) 3 + (libraries nox-irmin irmin_git git eio_main nox-memtrace digestif json))
+1 -1
irmin/test/cbor/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries irmin irmin_cbor cbor alcotest)) 3 + (libraries nox-irmin irmin_cbor nox-cbor alcotest))
+2 -2
irmin/test/cram/dune
··· 1 1 (cram 2 - (package irmin) 2 + (package nox-irmin) 3 3 (applies_to :whole_subtree) 4 4 (deps 5 - %{bin:irmin} 5 + %{bin:nox-irmin} 6 6 helpers/mst_proof/mst_proof.exe 7 7 (glob_files helpers/scrub/*)) 8 8 (setup_scripts helpers.sh))
+1 -1
irmin/test/cram/helpers/mst_proof/dune
··· 1 1 (executable 2 2 (name mst_proof) 3 - (libraries irmin irmin_tar digestif fmt)) 3 + (libraries nox-irmin irmin_tar digestif fmt))
+1 -1
irmin/test/dune
··· 2 2 (name test) 3 3 (libraries 4 4 helpers 5 - irmin 5 + nox-irmin 6 6 irmin_git 7 7 irmin_tar 8 8 git
+1 -1
irmin/test/gzip/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries irmin irmin_gzip irmin_json alcotest digestif)) 3 + (libraries nox-irmin irmin_gzip irmin_json alcotest digestif))
+1 -1
irmin/test/json/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries irmin irmin_json alcotest digestif)) 3 + (libraries nox-irmin irmin_json alcotest digestif))
+1 -1
irmin/test/mime/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries irmin irmin_mime alcotest)) 3 + (libraries nox-irmin irmin_mime alcotest))
+1 -1
irmin/test/oci/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries irmin irmin_oci alcotest)) 3 + (libraries nox-irmin irmin_oci alcotest))
+1 -1
irmin/test/text/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries irmin irmin_text alcotest)) 3 + (libraries nox-irmin irmin_text alcotest))
+1 -1
irmin/test/toml/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries irmin irmin_toml alcotest)) 3 + (libraries nox-irmin irmin_toml alcotest))
+1 -1
irmin/test/yaml/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries irmin irmin_yaml alcotest)) 3 + (libraries nox-irmin irmin_yaml alcotest))
+1 -1
kdf/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries kdf.hkdf kdf.pbkdf kdf.scrypt digestif)) 7 + (libraries nox-kdf.hkdf nox-kdf.pbkdf nox-kdf.scrypt digestif))
+3 -3
kdf/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name kdf) 3 + (name nox-kdf) 4 4 (source (tangled gazagnaire.org/kdf)) 5 5 (license BSD-2-Clause) 6 6 (authors ··· 17 17 (generate_opam_files true) 18 18 19 19 (package 20 - (name kdf) 20 + (name nox-kdf) 21 21 (synopsis "Key Derivation Functions: HKDF RFC 5869, PBKDF RFC 2898, SCRYPT RFC 7914") 22 22 (description "A pure OCaml implementation of scrypt (RFC 7914), PBKDF 1 and 2 as defined by PKCS#5 (RFC 2898), and HKDF (RFC 5869).") 23 23 (tags (org:blacksun crypto)) ··· 25 25 (ocaml (>= 4.13.0)) 26 26 (dune (>= 1.8.0)) 27 27 (digestif (>= 1.2.0)) 28 - (crypto (>= 1.0.0)) 28 + (nox-crypto (>= 1.0.0)) 29 29 (alcotest (and :with-test (>= 0.8.1))) 30 30 (mdx :with-test) 31 31 (ohex (and :with-test (>= 0.2.0)))
+1 -1
kdf/hkdf/dune
··· 1 1 (library 2 2 (name hkdf) 3 - (public_name kdf.hkdf) 3 + (public_name nox-kdf.hkdf) 4 4 (libraries digestif))
+1 -1
kdf/hkdf/tests/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries alcotest kdf.hkdf ohex)) 3 + (libraries alcotest nox-kdf.hkdf ohex))
+1 -1
kdf/kdf.opam kdf/nox-kdf.opam
··· 22 22 "ocaml" {>= "4.13.0"} 23 23 "dune" {>= "3.21" & >= "1.8.0"} 24 24 "digestif" {>= "1.2.0"} 25 - "crypto" {>= "1.0.0"} 25 + "nox-crypto" {>= "1.0.0"} 26 26 "alcotest" {with-test & >= "0.8.1"} 27 27 "mdx" {with-test} 28 28 "ohex" {with-test & >= "0.2.0"}
+2 -2
kdf/pbkdf/dune
··· 1 1 (library 2 2 (name pbkdf) 3 - (public_name kdf.pbkdf) 4 - (libraries digestif crypto)) 3 + (public_name nox-kdf.pbkdf) 4 + (libraries digestif nox-crypto))
+1 -1
kdf/pbkdf/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries ohex kdf.pbkdf alcotest)) 3 + (libraries ohex nox-kdf.pbkdf alcotest))
+2 -2
kdf/scrypt/dune
··· 1 1 (library 2 2 (name scrypt) 3 - (public_name kdf.scrypt) 4 - (libraries crypto kdf.pbkdf) 3 + (public_name nox-kdf.scrypt) 4 + (libraries nox-crypto nox-kdf.pbkdf) 5 5 (foreign_stubs 6 6 (language c) 7 7 (names salsa-core)
+1 -1
kdf/scrypt/tests/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries kdf.scrypt ohex alcotest)) 3 + (libraries nox-kdf.scrypt ohex alcotest))
+2 -2
memtrace/bin/dune
··· 7 7 memtrace_flamegraph 8 8 memtrace_hotspots 9 9 memtrace_strip_names) 10 - (package memtrace) 11 - (libraries memtrace unix fmt)) 10 + (package nox-memtrace) 11 + (libraries nox-memtrace unix fmt))
+1 -1
memtrace/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries memtrace)) 7 + (libraries nox-memtrace))
+2 -2
memtrace/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name memtrace) 4 + (name nox-memtrace) 5 5 6 6 (generate_opam_files true) 7 7 ··· 14 14 (source (github janestreet/memtrace)) 15 15 16 16 (package 17 - (name memtrace) 17 + (name nox-memtrace) 18 18 (synopsis "Streaming client for Memprof") 19 19 (tags (org:blacksun test)) 20 20 (description
+1 -1
memtrace/lib/dune
··· 1 1 (library 2 2 (name memtrace) 3 - (public_name memtrace) 3 + (public_name nox-memtrace) 4 4 (libraries unix threads fmt cmdliner))
memtrace/memtrace.opam memtrace/nox-memtrace.opam
memtrace/memtrace.opam.template memtrace/nox-memtrace.opam.template
+2 -2
memtrace/test/dune
··· 1 1 (executables 2 2 (names copy trace geom_sampler fork) 3 3 (modules copy trace geom_sampler fork) 4 - (libraries memtrace unix fmt cmdliner)) 4 + (libraries nox-memtrace unix fmt cmdliner)) 5 5 6 6 (test 7 7 (name test) ··· 15 15 test_memtrace 16 16 test_stdlib_shim 17 17 test_trace) 18 - (libraries memtrace unix fmt cmdliner alcotest)) 18 + (libraries nox-memtrace unix fmt cmdliner alcotest)) 19 19 20 20 (rule 21 21 (deps trace.exe)
+1 -1
memtrace/trace_ocamlopt/dune
··· 1 1 (mdx 2 - (libraries memtrace) 2 + (libraries nox-memtrace) 3 3 (files README.md))
+2 -2
merlint/bin/dune
··· 9 9 fpath 10 10 fmt 11 11 vlog 12 - tty 12 + nox-tty 13 13 monopam-info 14 - memtrace)) 14 + nox-memtrace)) 15 15 16 16 (executable 17 17 (public_name merlint-doc-gen)
+4 -4
merlint/dune-project
··· 27 27 logs 28 28 fmt 29 29 astring 30 - sexp 30 + nox-sexp 31 31 opam 32 - tty 32 + nox-tty 33 33 vlog 34 34 eio_main 35 - memtrace 35 + nox-memtrace 36 36 monopam-info 37 37 (alcotest :with-test) 38 38 (mdx :with-test) 39 - loc)) 39 + nox-loc))
+2 -2
merlint/lib/dune
··· 13 13 astring 14 14 fpath 15 15 vlog 16 - tty 16 + nox-tty 17 17 json 18 18 opam 19 19 opam.bytesrw 20 20 bytesrw 21 - sexp)) 21 + nox-sexp)) 22 22 23 23 (rule 24 24 (target examples.ml)
+4 -4
merlint/merlint.opam
··· 22 22 "logs" 23 23 "fmt" 24 24 "astring" 25 - "sexp" 25 + "nox-sexp" 26 26 "opam" 27 - "tty" 27 + "nox-tty" 28 28 "vlog" 29 29 "eio_main" 30 - "memtrace" 30 + "nox-memtrace" 31 31 "monopam-info" 32 32 "alcotest" {with-test} 33 33 "mdx" {with-test} 34 - "loc" 34 + "nox-loc" 35 35 "odoc" {with-doc} 36 36 ] 37 37 build: [
+2 -2
monopam/bin/dune
··· 12 12 logs.fmt 13 13 logs.cli 14 14 vlog 15 - tty 16 - memtrace 15 + nox-tty 16 + nox-memtrace 17 17 monopam-info))
+8 -8
monopam/dune-project
··· 19 19 (bytesrw (>= 0.1.0)) 20 20 (eio (>= 1.2)) 21 21 (eio_main (>= 1.2)) 22 - (git (>= 0.1.0)) 23 - (toml (>= 0.1.0)) 24 - (xdge (>= 0.1.0)) 22 + (nox-git (>= 0.1.0)) 23 + (nox-toml (>= 0.1.0)) 24 + (nox-xdge (>= 0.1.0)) 25 25 (opam (>= 0.1.0)) 26 26 (meta (>= 0.1.0)) 27 27 (bytesrw-eio (>= 0.1.0)) ··· 35 35 (json (>= 0.2.0)) 36 36 requests 37 37 (ptime (>= 1.0.0)) 38 - (sexp (>= 0.1.0)) 39 - (tty (>= 0.1.0)) 40 - (tty-eio (>= 0.1.0)) 38 + (nox-sexp (>= 0.1.0)) 39 + (nox-tty (>= 0.1.0)) 40 + (nox-tty-eio (>= 0.1.0)) 41 41 (retry (>= 0.1.0)) 42 - memtrace 42 + nox-memtrace 43 43 monopam-info 44 44 vlog 45 45 (odoc :with-doc) 46 46 (mdx :with-test) 47 - loc)) 47 + nox-loc)) 48 48
+7 -7
monopam/lib/dune
··· 3 3 (public_name monopam) 4 4 (libraries 5 5 eio 6 - toml 7 - toml.eio 8 - xdge 6 + nox-toml 7 + nox-toml.eio 8 + nox-xdge 9 9 opam 10 10 opam.bytesrw 11 11 bytesrw ··· 17 17 claude 18 18 json 19 19 ptime 20 - sexp 20 + nox-sexp 21 21 meta 22 22 meta.bytesrw 23 - git 23 + nox-git 24 24 re 25 25 retry 26 - tty 27 - tty-eio 26 + nox-tty 27 + nox-tty-eio 28 28 unix))
+8 -8
monopam/monopam.opam
··· 15 15 "bytesrw" {>= "0.1.0"} 16 16 "eio" {>= "1.2"} 17 17 "eio_main" {>= "1.2"} 18 - "git" {>= "0.1.0"} 19 - "toml" {>= "0.1.0"} 20 - "xdge" {>= "0.1.0"} 18 + "nox-git" {>= "0.1.0"} 19 + "nox-toml" {>= "0.1.0"} 20 + "nox-xdge" {>= "0.1.0"} 21 21 "opam" {>= "0.1.0"} 22 22 "meta" {>= "0.1.0"} 23 23 "bytesrw-eio" {>= "0.1.0"} ··· 31 31 "json" {>= "0.2.0"} 32 32 "requests" 33 33 "ptime" {>= "1.0.0"} 34 - "sexp" {>= "0.1.0"} 35 - "tty" {>= "0.1.0"} 36 - "tty-eio" {>= "0.1.0"} 34 + "nox-sexp" {>= "0.1.0"} 35 + "nox-tty" {>= "0.1.0"} 36 + "nox-tty-eio" {>= "0.1.0"} 37 37 "retry" {>= "0.1.0"} 38 - "memtrace" 38 + "nox-memtrace" 39 39 "monopam-info" 40 40 "vlog" 41 41 "odoc" {with-doc} 42 42 "mdx" {with-test} 43 - "loc" 43 + "nox-loc" 44 44 ] 45 45 build: [ 46 46 ["dune" "subst"] {dev}
+1 -1
monopam/test/cram/helpers/dune
··· 1 1 (executable 2 2 (name demo) 3 - (libraries fmt tty unix)) 3 + (libraries fmt nox-tty unix))
+4 -4
ocaml-agent/agent.opam
··· 19 19 "eio_main" {>= "1.0"} 20 20 "logs" {>= "0.7.0"} 21 21 "fmt" {>= "0.9.0"} 22 - "xdge" 23 - "yaml" 24 - "memtrace" 22 + "nox-xdge" 23 + "nox-yaml" 24 + "nox-memtrace" 25 25 "monopam-info" 26 - "tty" 26 + "nox-tty" 27 27 "vlog" 28 28 "mdx" {with-test} 29 29 "cmarkit"
+3 -3
ocaml-agent/bin/dune
··· 5 5 agent 6 6 eio_main 7 7 cmdliner 8 - xdge 8 + nox-xdge 9 9 astring 10 10 vlog 11 - tty 11 + nox-tty 12 12 fmt 13 13 monopam-info 14 - memtrace)) 14 + nox-memtrace))
+4 -4
ocaml-agent/dune-project
··· 24 24 (eio_main (>= 1.0)) 25 25 (logs (>= 0.7.0)) 26 26 (fmt (>= 0.9.0)) 27 - xdge 28 - yaml 29 - memtrace 27 + nox-xdge 28 + nox-yaml 29 + nox-memtrace 30 30 monopam-info 31 - tty 31 + nox-tty 32 32 vlog 33 33 (mdx :with-test) 34 34 cmarkit))
+1 -1
ocaml-agent/lib/dune
··· 1 1 (library 2 2 (name agent) 3 3 (public_name agent) 4 - (libraries claude eio logs fmt yaml yaml.json cmarkit astring)) 4 + (libraries claude eio logs fmt nox-yaml nox-yaml.json cmarkit astring))
+1 -1
ocaml-agent/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries agent claude alcotest yaml yaml.json)) 3 + (libraries agent claude alcotest nox-yaml nox-yaml.json))
+1 -1
ocaml-aos/aos.opam
··· 13 13 "dune" {>= "3.21"} 14 14 "ocaml" {>= "4.14"} 15 15 "clcw" {>= "0.1"} 16 - "crc" {>= "0.1"} 16 + "nox-crc" {>= "0.1"} 17 17 "wire" {>= "0.1"} 18 18 "alcotest" {with-test} 19 19 "mdx" {with-test}
+1 -1
ocaml-aos/dune-project
··· 23 23 (depends 24 24 (ocaml (>= 4.14)) 25 25 (clcw (>= 0.1)) 26 - (crc (>= 0.1)) 26 + (nox-crc (>= 0.1)) 27 27 (wire (>= 0.1)) 28 28 (alcotest :with-test) 29 29 (mdx :with-test)
+1 -1
ocaml-aos/lib/dune
··· 1 1 (library 2 2 (name aos) 3 3 (public_name aos) 4 - (libraries clcw crc wire wire.stubs)) 4 + (libraries clcw nox-crc wire wire.stubs))
+1 -1
ocaml-aos/test/interop/dariol83/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries aos csv alcotest) 3 + (libraries aos nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
ocaml-arp/arp.opam ocaml-arp/nox-arp.opam
ocaml-arp/arp.opam.template ocaml-arp/nox-arp.opam.template
+1 -1
ocaml-arp/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries arp)) 7 + (libraries nox-arp))
+2 -2
ocaml-arp/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name arp) 3 + (name nox-arp) 4 4 (source (tangled gazagnaire.org/ocaml-arp)) 5 5 6 6 (generate_opam_files true) 7 7 8 8 (package 9 - (name arp) 9 + (name nox-arp) 10 10 (synopsis "Pure OCaml ARP table lookup") 11 11 (tags (org:blacksun network)) 12 12 (description
+1 -1
ocaml-arp/lib/dune
··· 1 1 (library 2 2 (name arp) 3 - (public_name arp) 3 + (public_name nox-arp) 4 4 (libraries unix))
+1 -1
ocaml-arp/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries arp alcotest fmt)) 3 + (libraries nox-arp alcotest fmt))
+1 -1
ocaml-atp/atp-xrpc.opam
··· 14 14 "atp" {= version} 15 15 "requests" {>= "0.1"} 16 16 "json" {>= "0.1"} 17 - "jwt" {>= "0.1"} 17 + "nox-jwt" {>= "0.1"} 18 18 "ptime" {>= "1.0"} 19 19 "uri" {>= "4.0"} 20 20 "eio" {>= "1.0"}
+3 -3
ocaml-atp/bin/tangled/cli/dune
··· 13 13 eio_main 14 14 fmt 15 15 fmt.tty 16 - xdge 17 - toml.eio 18 - crypto-rng.unix)) 16 + nox-xdge 17 + nox-toml.eio 18 + nox-crypto-rng.unix))
+2 -2
ocaml-atp/bin/tangled/lib/dune
··· 11 11 eio 12 12 ptime 13 13 ptime.clock.os 14 - toml.eio 15 - xdge)) 14 + nox-toml.eio 15 + nox-xdge))
+1 -1
ocaml-atp/bin/tangled/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries tangled alcotest atp-xrpc fmt json toml)) 3 + (libraries tangled alcotest atp-xrpc fmt json nox-toml))
+2 -2
ocaml-atp/bsky.opam
··· 18 18 "atp-lexicon-bsky" {= version} 19 19 "cmdliner" {>= "1.2"} 20 20 "json" {>= "0.1"} 21 - "toml" {>= "0.1"} 22 - "xdge" {>= "0.1"} 21 + "nox-toml" {>= "0.1"} 22 + "nox-xdge" {>= "0.1"} 23 23 "re" {>= "1.0"} 24 24 "eio_main" 25 25 "mdx" {with-test}
+6 -6
ocaml-atp/dune-project
··· 39 39 (atp (= :version)) 40 40 (requests (>= 0.1)) 41 41 (json (>= 0.1)) 42 - (jwt (>= 0.1)) 42 + (nox-jwt (>= 0.1)) 43 43 (ptime (>= 1.0)) 44 44 (uri (>= 4.0)) 45 45 (eio (>= 1.0)) ··· 162 162 (atp-lexicon-tangled (= :version)) 163 163 (atproto-handle (>= 0.1)) 164 164 (atproto-oauth (>= 0.1)) 165 - crypto-rng 165 + nox-crypto-rng 166 166 requests 167 167 (json (>= 0.1)) 168 168 (eio (>= 1.0)) 169 169 (ptime (>= 1.0)) 170 - (toml (>= 0.1)) 171 - (xdge (>= 0.1)) 170 + (nox-toml (>= 0.1)) 171 + (nox-xdge (>= 0.1)) 172 172 (cmdliner (>= 1.2)) 173 173 eio_main 174 174 (mdx :with-test) ··· 188 188 (atp-lexicon-bsky (= :version)) 189 189 (cmdliner (>= 1.2)) 190 190 (json (>= 0.1)) 191 - (toml (>= 0.1)) 192 - (xdge (>= 0.1)) 191 + (nox-toml (>= 0.1)) 192 + (nox-xdge (>= 0.1)) 193 193 (re (>= 1.0)) 194 194 eio_main 195 195 (mdx :with-test)
+3 -3
ocaml-atp/tangled.opam
··· 16 16 "atp-lexicon-tangled" {= version} 17 17 "atproto-handle" {>= "0.1"} 18 18 "atproto-oauth" {>= "0.1"} 19 - "crypto-rng" 19 + "nox-crypto-rng" 20 20 "requests" 21 21 "json" {>= "0.1"} 22 22 "eio" {>= "1.0"} 23 23 "ptime" {>= "1.0"} 24 - "toml" {>= "0.1"} 25 - "xdge" {>= "0.1"} 24 + "nox-toml" {>= "0.1"} 25 + "nox-xdge" {>= "0.1"} 26 26 "cmdliner" {>= "1.2"} 27 27 "eio_main" 28 28 "mdx" {with-test}
+1 -1
ocaml-atp/xrpc-auth/test/dune
··· 8 8 eio 9 9 eio_main 10 10 fmt 11 - jwt 11 + nox-jwt 12 12 ptime 13 13 ptime.clock.os))
+1 -1
ocaml-atp/xrpc/dune
··· 1 1 (library 2 2 (name xrpc) 3 3 (public_name atp-xrpc) 4 - (libraries atp requests json jwt ptime ptime.clock.os fmt eio uri)) 4 + (libraries atp requests json nox-jwt ptime ptime.clock.os fmt eio uri))
+1 -1
ocaml-atp/xrpc/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries atp-xrpc alcotest eio eio_main fmt jwt ptime ptime.clock.os loc)) 3 + (libraries atp-xrpc alcotest eio eio_main fmt nox-jwt ptime ptime.clock.os nox-loc))
+1 -1
ocaml-atproto-oauth/lib/discovery/test/dune
··· 6 6 atproto-handle 7 7 did 8 8 dpop 9 - crypto-rng.unix 9 + nox-crypto-rng.unix 10 10 oauth 11 11 alcotest 12 12 eio
+1 -1
ocaml-atproto-oauth/test/dune
··· 5 5 atproto-handle 6 6 did 7 7 dpop 8 - crypto-rng.unix 8 + nox-crypto-rng.unix 9 9 eio 10 10 eio_main 11 11 unix
+2 -2
ocaml-auth/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
ocaml-auth/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
ocaml-auth/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
ocaml-auth/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))
+1 -1
ocaml-ax25/test/interop/pyax25/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries ax25 csv alcotest) 3 + (libraries ax25 nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+4 -4
ocaml-bpsec/bpsec.opam
··· 15 15 "dune" {>= "3.21"} 16 16 "ocaml" {>= "4.14"} 17 17 "bundle" {>= "0.1"} 18 - "cbor" {>= "0.1"} 19 - "crypto" 20 - "crypto-rng" 18 + "nox-cbor" {>= "0.1"} 19 + "nox-crypto" 20 + "nox-crypto-rng" 21 21 "digestif" 22 22 "fmt" 23 23 "alcotest" {with-test} 24 24 "alcobar" {with-test} 25 25 "mdx" {with-test} 26 - "loc" 26 + "nox-loc" 27 27 "odoc" {with-doc} 28 28 ] 29 29 build: [
+4 -4
ocaml-bpsec/dune-project
··· 25 25 (depends 26 26 (ocaml (>= 4.14)) 27 27 (bundle (>= 0.1)) 28 - (cbor (>= 0.1)) 29 - crypto 30 - crypto-rng 28 + (nox-cbor (>= 0.1)) 29 + nox-crypto 30 + nox-crypto-rng 31 31 digestif 32 32 fmt 33 33 (alcotest :with-test) 34 34 (alcobar :with-test) 35 35 (mdx :with-test) 36 - loc)) 36 + nox-loc))
+1 -1
ocaml-bpsec/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries bpsec alcobar crypto-rng.unix)) 3 + (libraries bpsec alcobar nox-crypto-rng.unix)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
ocaml-bpsec/lib/dune
··· 1 1 (library 2 2 (name bpsec) 3 3 (public_name bpsec) 4 - (libraries bundle cbor digestif crypto crypto-rng fmt)) 4 + (libraries bundle nox-cbor digestif nox-crypto nox-crypto-rng fmt))
+1 -1
ocaml-bpsec/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries bpsec alcotest crypto-rng.unix)) 3 + (libraries bpsec alcotest nox-crypto-rng.unix))
+3 -3
ocaml-bundle/bundle.opam
··· 15 15 depends: [ 16 16 "dune" {>= "3.21"} 17 17 "ocaml" {>= "4.14"} 18 - "cbor" {>= "0.1"} 18 + "nox-cbor" {>= "0.1"} 19 19 "bytesrw" {>= "0.1"} 20 - "crc" {>= "0.1"} 20 + "nox-crc" {>= "0.1"} 21 21 "fmt" 22 22 "alcotest" {with-test} 23 23 "alcobar" {with-test} 24 24 "mdx" {with-test} 25 - "loc" 25 + "nox-loc" 26 26 "odoc" {with-doc} 27 27 ] 28 28 build: [
+3 -3
ocaml-bundle/dune-project
··· 23 23 with intermittent connectivity.") 24 24 (depends 25 25 (ocaml (>= 4.14)) 26 - (cbor (>= 0.1)) 26 + (nox-cbor (>= 0.1)) 27 27 (bytesrw (>= 0.1)) 28 - (crc (>= 0.1)) 28 + (nox-crc (>= 0.1)) 29 29 fmt 30 30 (alcotest :with-test) 31 31 (alcobar :with-test) 32 32 (mdx :with-test) 33 - loc)) 33 + nox-loc))
+1 -1
ocaml-bundle/lib/dune
··· 1 1 (library 2 2 (name bundle) 3 3 (public_name bundle) 4 - (libraries cbor bytesrw crc fmt)) 4 + (libraries nox-cbor bytesrw nox-crc fmt))
+1 -1
ocaml-bundle/test/interop/bp7/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries bundle csv alcotest) 3 + (libraries bundle nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-cbor/cbor.opam ocaml-cbor/nox-cbor.opam
··· 23 23 "odoc" {with-doc} 24 24 "alcobar" {with-test} 25 25 "mdx" {with-test} 26 - "loc" 26 + "nox-loc" 27 27 ] 28 28 build: [ 29 29 ["dune" "subst"] {dev}
ocaml-cbor/cbor.opam.template ocaml-cbor/nox-cbor.opam.template
+1 -1
ocaml-cbor/dune
··· 11 11 12 12 (mdx 13 13 (files README.md) 14 - (libraries cbor bytesrw)) 14 + (libraries nox-cbor bytesrw))
+3 -3
ocaml-cbor/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name cbor) 3 + (name nox-cbor) 4 4 5 5 (generate_opam_files true) 6 6 ··· 10 10 (source (tangled anil.recoil.org/ocaml-cbort)) 11 11 12 12 (package 13 - (name cbor) 13 + (name nox-cbor) 14 14 (synopsis "Native CBOR codec with type-safe combinators") 15 15 (tags (org:blacksun codec.binary)) 16 16 (description ··· 25 25 (odoc :with-doc) 26 26 (alcobar :with-test) 27 27 (mdx :with-test) 28 - loc)) 28 + nox-loc))
+1 -1
ocaml-cbor/fuzz/dune
··· 10 10 11 11 (executable 12 12 (name fuzz) 13 - (libraries cbor bytesrw alcobar)) 13 + (libraries nox-cbor bytesrw alcobar)) 14 14 15 15 (rule 16 16 (alias runtest)
+2 -2
ocaml-cbor/lib/dune
··· 1 1 (library 2 2 (name cbor) 3 - (public_name cbor) 3 + (public_name nox-cbor) 4 4 (libraries 5 5 bytesrw 6 6 zarith 7 7 fmt 8 - (re_export loc))) 8 + (re_export nox-loc)))
+1 -1
ocaml-cbor/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries cbor alcotest bytesrw zarith ohex fmt) 3 + (libraries nox-cbor alcotest bytesrw zarith ohex fmt) 4 4 (deps 5 5 (source_tree ../test-vectors)))
+2 -2
ocaml-cdm/cdm.opam
··· 12 12 depends: [ 13 13 "dune" {>= "3.21"} 14 14 "ocaml" {>= "4.14"} 15 - "csv" 15 + "nox-csv" 16 16 "fmt" 17 17 "json" 18 18 "ptime" 19 19 "vec3" 20 20 "mdx" {with-test} 21 - "loc" 21 + "nox-loc" 22 22 "odoc" {with-doc} 23 23 ] 24 24 build: [
+2 -2
ocaml-cdm/dune-project
··· 19 19 verification dataset CSV.") 20 20 (depends 21 21 (ocaml (>= 4.14)) 22 - csv 22 + nox-csv 23 23 fmt 24 24 json ptime 25 25 vec3 26 26 (mdx :with-test) 27 - loc)) 27 + nox-loc))
+1 -1
ocaml-cdm/example/dune
··· 1 1 (executable 2 2 (name summary) 3 - (libraries cdm csv fmt)) 3 + (libraries cdm nox-csv fmt))
+1 -1
ocaml-cdm/lib/dune
··· 1 1 (library 2 2 (name cdm) 3 3 (public_name cdm) 4 - (libraries vec3 csv json ptime fmt)) 4 + (libraries vec3 nox-csv json ptime fmt))
+1 -1
ocaml-cdm/test/interop/orekit/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries cdm alcotest csv) 3 + (libraries cdm alcotest nox-csv) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-cfdp/cfdp.opam
··· 13 13 "dune" {>= "3.21"} 14 14 "ocaml" {>= "5.1"} 15 15 "checkseum" {>= "0.5"} 16 - "crc" {>= "0.1"} 16 + "nox-crc" {>= "0.1"} 17 17 "fmt" {>= "0.9"} 18 18 "wire" 19 19 "alcotest" {with-test & >= "1.7"}
+1 -1
ocaml-cfdp/dune-project
··· 23 23 (depends 24 24 (ocaml (>= 5.1)) 25 25 (checkseum (>= 0.5)) 26 - (crc (>= 0.1)) 26 + (nox-crc (>= 0.1)) 27 27 (fmt (>= 0.9)) 28 28 wire 29 29 (alcotest (and :with-test (>= 1.7)))
+1 -1
ocaml-cfdp/lib/dune
··· 1 1 (library 2 2 (name cfdp) 3 3 (public_name cfdp) 4 - (libraries checkseum crc fmt wire)) 4 + (libraries checkseum nox-crc fmt wire))
+1 -1
ocaml-cfdp/test/interop/dariol83/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries cfdp csv alcotest) 3 + (libraries cfdp nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-cfdp/test/interop/spacepackets/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries cfdp csv alcotest) 3 + (libraries cfdp nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-claude-skills/bin/dune
··· 11 11 fmt 12 12 logs 13 13 vlog 14 - tty 14 + nox-tty 15 15 monopam-info))
+1 -1
ocaml-claude-skills/dune-project
··· 24 24 fmt 25 25 logs 26 26 monopam-info 27 - tty 27 + nox-tty 28 28 vlog 29 29 (mdx :with-test) 30 30 (alcotest :with-test)))
+1 -1
ocaml-claude-skills/ocaml-claude-skills.opam
··· 19 19 "fmt" 20 20 "logs" 21 21 "monopam-info" 22 - "tty" 22 + "nox-tty" 23 23 "vlog" 24 24 "mdx" {with-test} 25 25 "alcotest" {with-test}
+1 -1
ocaml-claude/claude.opam
··· 21 21 "odoc" {with-doc} 22 22 "alcotest" {with-test & >= "1.7.0"} 23 23 "mdx" {with-test} 24 - "loc" 24 + "nox-loc" 25 25 ] 26 26 build: [ 27 27 ["dune" "subst"] {dev}
+1 -1
ocaml-claude/dune-project
··· 25 25 (odoc :with-doc) 26 26 (alcotest (and :with-test (>= 1.7.0))) 27 27 (mdx :with-test) 28 - loc)) 28 + nox-loc))
+1 -1
ocaml-claude/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries claude alcotest vlog loc)) 3 + (libraries claude alcotest vlog nox-loc))
+1 -1
ocaml-clcw/bench/dune
··· 6 6 (executable 7 7 (name bench_memtrace) 8 8 (modules bench_memtrace) 9 - (libraries clcw fmt memtrace)) 9 + (libraries clcw fmt nox-memtrace))
+1 -1
ocaml-clcw/test/interop/dariol83/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries clcw csv alcotest) 3 + (libraries clcw nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-conpool/conpool.opam
··· 13 13 "ocaml" {>= "5.1.0"} 14 14 "dune" {>= "3.21" & >= "3.0"} 15 15 "eio" 16 - "tls-eio" {>= "1.0"} 16 + "nox-tls-eio" {>= "1.0"} 17 17 "logs" 18 18 "fmt" 19 19 "cmdliner"
+1 -1
ocaml-conpool/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries conpool eio eio.core eio.unix ca-certs tls)) 7 + (libraries conpool eio eio.core eio.unix nox-ca-certs nox-tls))
+1 -1
ocaml-conpool/dune-project
··· 18 18 (ocaml (>= 5.1.0)) 19 19 (dune (>= 3.0)) 20 20 eio 21 - (tls-eio (>= 1.0)) 21 + (nox-tls-eio (>= 1.0)) 22 22 logs 23 23 fmt 24 24 cmdliner
+1 -1
ocaml-conpool/lib/dune
··· 2 2 (name conpool) 3 3 (public_name conpool) 4 4 (private_modules connection) 5 - (libraries eio eio.unix tls-eio logs fmt cmdliner)) 5 + (libraries eio eio.unix nox-tls-eio logs fmt cmdliner))
+1 -1
ocaml-contact/bin/dune
··· 1 1 (executable 2 2 (name main) 3 3 (public_name contact) 4 - (libraries contact sgp4 coordinate tty vlog fmt cmdliner ptime)) 4 + (libraries contact sgp4 coordinate nox-tty vlog fmt cmdliner ptime))
+1 -1
ocaml-contact/contact.opam
··· 22 22 "ptime" {>= "1.0"} 23 23 "fmt" {>= "0.9"} 24 24 "cmdliner" {>= "1.3"} 25 - "tty" 25 + "nox-tty" 26 26 "vlog" 27 27 "alcotest" {with-test} 28 28 "mdx" {with-test}
+1 -1
ocaml-contact/dune-project
··· 32 32 (ptime (>= 1.0)) 33 33 (fmt (>= 0.9)) 34 34 (cmdliner (>= 1.3)) 35 - tty 35 + nox-tty 36 36 vlog 37 37 (alcotest :with-test) 38 38 (mdx :with-test)))
+1 -1
ocaml-cookie/bin/dune
··· 1 1 (executable 2 2 (name cookiecat) 3 3 (public_name cookiecat) 4 - (libraries cookie cookie.jar eio_main ptime)) 4 + (libraries nox-cookie nox-cookie.jar eio_main ptime))
ocaml-cookie/cookie.opam ocaml-cookie/nox-cookie.opam
ocaml-cookie/cookie.opam.template ocaml-cookie/nox-cookie.opam.template
+1 -1
ocaml-cookie/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries cookie cookie.jar ptime.clock.os)) 7 + (libraries nox-cookie nox-cookie.jar ptime.clock.os))
+2 -2
ocaml-cookie/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name cookie) 4 + (name nox-cookie) 5 5 6 6 (generate_opam_files true) 7 7 ··· 15 15 (maintenance_intent "(latest)") 16 16 17 17 (package 18 - (name cookie) 18 + (name nox-cookie) 19 19 (synopsis "Cookie parsing and management library") 20 20 (tags (org:blacksun network http)) 21 21 (description "Cookie provides cookie parsing and serialization for OCaml applications. It handles parsing Set-Cookie and Cookie headers with full support for all cookie attributes.")
+1 -1
ocaml-cookie/fuzz/dune
··· 5 5 6 6 (executable 7 7 (name fuzz) 8 - (libraries cookie alcobar fmt)) 8 + (libraries nox-cookie alcobar fmt)) 9 9 10 10 (rule 11 11 (alias runtest)
+1 -1
ocaml-cookie/lib/core/dune
··· 1 1 (library 2 2 (name cookie) 3 - (public_name cookie) 3 + (public_name nox-cookie) 4 4 (libraries fmt logs ptime ipaddr domain-name publicsuffix))
+2 -2
ocaml-cookie/lib/jar/dune
··· 1 1 (library 2 2 (name cookie_jar) 3 - (public_name cookie.jar) 4 - (libraries cookie eio fmt logs ptime unix ipaddr)) 3 + (public_name nox-cookie.jar) 4 + (libraries nox-cookie eio fmt logs ptime unix ipaddr))
+1 -1
ocaml-cookie/test/dune
··· 1 1 (test 2 2 (name test) 3 3 (libraries 4 - cookie 4 + nox-cookie 5 5 cookie_jar 6 6 alcotest 7 7 eio
+1 -1
ocaml-cop1/test/interop/dariol83/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries cop1 csv alcotest) 3 + (libraries cop1 nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+5 -5
ocaml-cose/cose.opam
··· 14 14 depends: [ 15 15 "ocaml" {>= "5.1"} 16 16 "dune" {>= "3.21" & >= "3.21"} 17 - "cbor" {>= "0.1.0"} 18 - "x509" {>= "1.0.0"} 19 - "crypto-ec" {>= "1.0.0"} 20 - "crypto-rng" {>= "0.11.0"} 17 + "nox-cbor" {>= "0.1.0"} 18 + "nox-x509" {>= "1.0.0"} 19 + "nox-crypto-ec" {>= "1.0.0"} 20 + "nox-crypto-rng" {>= "0.11.0"} 21 21 "digestif" {>= "1.2.0"} 22 22 "ohex" {>= "0.2"} 23 23 "base64" {>= "3.0"} ··· 26 26 "alcotest" {with-test} 27 27 "odoc" {with-doc} 28 28 "mdx" {with-test} 29 - "loc" 29 + "nox-loc" 30 30 ] 31 31 build: [ 32 32 ["dune" "subst"] {dev}
+1 -1
ocaml-cose/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries cose crypto-ec)) 7 + (libraries cose nox-crypto-ec))
+5 -5
ocaml-cose/dune-project
··· 20 20 (depends 21 21 (ocaml (>= 5.1)) 22 22 (dune (>= 3.21)) 23 - (cbor (>= 0.1.0)) 24 - (x509 (>= 1.0.0)) 25 - (crypto-ec (>= 1.0.0)) 26 - (crypto-rng (>= 0.11.0)) 23 + (nox-cbor (>= 0.1.0)) 24 + (nox-x509 (>= 1.0.0)) 25 + (nox-crypto-ec (>= 1.0.0)) 26 + (nox-crypto-rng (>= 0.11.0)) 27 27 (digestif (>= 1.2.0)) 28 28 (ohex (>= 0.2)) 29 29 (base64 (>= 3.0)) ··· 32 32 (alcotest :with-test) 33 33 (odoc :with-doc) 34 34 (mdx :with-test) 35 - loc)) 35 + nox-loc))
+1 -1
ocaml-cose/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries cose alcobar cbor)) 3 + (libraries cose alcobar nox-cbor)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
ocaml-cose/lib/dune
··· 1 1 (library 2 2 (name cose) 3 3 (public_name cose) 4 - (libraries cbor x509 crypto-ec crypto-rng digestif ohex base64 fmt logs)) 4 + (libraries nox-cbor nox-x509 nox-crypto-ec nox-crypto-rng digestif ohex base64 fmt logs))
+1 -1
ocaml-cose/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries cose alcotest cbor digestif x509 crypto-ec crypto-rng.unix ohex)) 3 + (libraries cose alcotest nox-cbor digestif nox-x509 nox-crypto-ec nox-crypto-rng.unix ohex))
+1 -1
ocaml-cose/test/interop/pycose/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries cose csv alcotest x509 ohex crypto-rng.unix) 3 + (libraries cose nox-csv alcotest nox-x509 ohex nox-crypto-rng.unix) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-crc/bench/dune
··· 1 1 (executable 2 2 (name bench) 3 - (libraries crc fmt unix)) 3 + (libraries nox-crc fmt unix))
ocaml-crc/crc.opam ocaml-crc/nox-crc.opam
ocaml-crc/crc.opam.template ocaml-crc/nox-crc.opam.template
+1 -1
ocaml-crc/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries crc)) 7 + (libraries nox-crc))
+2 -2
ocaml-crc/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name crc) 4 + (name nox-crc) 5 5 6 6 (generate_opam_files true) 7 7 ··· 12 12 (source (tangled gazagnaire.org/ocaml-crc)) 13 13 14 14 (package 15 - (name crc) 15 + (name nox-crc) 16 16 (synopsis "CRC checksums for OCaml") 17 17 (tags (org:blacksun codec.binary)) 18 18 (description
+1 -1
ocaml-crc/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries crc alcobar)) 3 + (libraries nox-crc alcobar)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
ocaml-crc/lib/dune
··· 1 1 (library 2 2 (name crc) 3 - (public_name crc) 3 + (public_name nox-crc) 4 4 (js_of_ocaml 5 5 (javascript_files crc_stubs.js)) 6 6 (foreign_stubs
+1 -1
ocaml-crc/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries crc alcotest memtrace)) 3 + (libraries nox-crc alcotest nox-memtrace))
+1 -1
ocaml-crc/test/interop/crcmod/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries crc csv alcotest) 3 + (libraries nox-crc nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-crow/bin/dune
··· 1 1 (executable 2 2 (name main) 3 3 (public_name crow) 4 - (libraries crow cmdliner eio_main vlog tty monopam-info memtrace)) 4 + (libraries crow cmdliner eio_main vlog nox-tty monopam-info nox-memtrace))
+2 -2
ocaml-crow/crow.opam
··· 18 18 "fmt" {>= "0.9"} 19 19 "logs" {>= "0.7"} 20 20 "re" {>= "1.0"} 21 - "tty" {>= "0.1"} 21 + "nox-tty" {>= "0.1"} 22 22 "vlog" {>= "0.1"} 23 - "memtrace" 23 + "nox-memtrace" 24 24 "monopam-info" 25 25 "mdx" {with-test} 26 26 "alcotest" {with-test}
+2 -2
ocaml-crow/dune-project
··· 28 28 (fmt (>= 0.9)) 29 29 (logs (>= 0.7)) 30 30 (re (>= 1.0)) 31 - (tty (>= 0.1)) 31 + (nox-tty (>= 0.1)) 32 32 (vlog (>= 0.1)) 33 - memtrace 33 + nox-memtrace 34 34 monopam-info 35 35 (mdx :with-test) 36 36 (alcotest :with-test)))
+1 -1
ocaml-crow/lib/dune
··· 1 1 (library 2 2 (name crow) 3 3 (public_name crow) 4 - (libraries eio unix fmt logs re tty)) 4 + (libraries eio unix fmt logs re nox-tty))
+1 -1
ocaml-crypto/bench/dune
··· 1 1 (executables 2 2 (names speed) 3 - (libraries crypto crypto-rng crypto-rng.unix crypto-pk crypto-ec)) 3 + (libraries nox-crypto nox-crypto-rng nox-crypto-rng.unix nox-crypto-pk nox-crypto-ec))
+1 -1
ocaml-crypto/crypto-ec.opam ocaml-crypto/nox-crypto-ec.opam
··· 17 17 "dune-configurator" 18 18 "eqaf" {>= "0.7"} 19 19 "fmt" 20 - "crypto-rng" {= version} 20 + "nox-crypto-rng" {= version} 21 21 "digestif" {>= "1.2.0"} 22 22 "alcotest" {with-test & >= "0.8.1"} 23 23 "asn1-combinators" {with-test & >= "0.3.1"}
+2 -2
ocaml-crypto/crypto-pk.opam ocaml-crypto/nox-crypto-pk.opam
··· 18 18 "ounit2" {with-test} 19 19 "randomconv" {with-test & >= "0.2.0"} 20 20 "ohex" {with-test & >= "0.2.0"} 21 - "crypto" {= version} 22 - "crypto-rng" {= version} 21 + "nox-crypto" {= version} 22 + "nox-crypto-rng" {= version} 23 23 "digestif" {>= "1.2.0"} 24 24 "zarith" {>= "1.13"} 25 25 "mdx" {with-test}
+1 -1
ocaml-crypto/crypto-rng.opam ocaml-crypto/nox-crypto-rng.opam
··· 17 17 "dune-configurator" {>= "2.0.0"} 18 18 "logs" 19 19 "fmt" 20 - "crypto" {= version} 20 + "nox-crypto" {= version} 21 21 "digestif" {>= "1.1.4"} 22 22 "ounit2" {with-test} 23 23 "randomconv" {with-test & >= "0.2.0"}
ocaml-crypto/crypto.opam ocaml-crypto/nox-crypto.opam
ocaml-crypto/crypto.opam.template ocaml-crypto/nox-crypto.opam.template
+1 -1
ocaml-crypto/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries crypto crypto.c crypto-ec crypto-pk crypto-rng crypto-rng.unix)) 7 + (libraries nox-crypto nox-crypto.c nox-crypto-ec nox-crypto-pk nox-crypto-rng nox-crypto-rng.unix))
+9 -9
ocaml-crypto/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name crypto) 3 + (name nox-crypto) 4 4 (source (tangled gazagnaire.org/ocaml-crypto)) 5 5 (license ISC) 6 6 (authors ··· 11 11 (generate_opam_files true) 12 12 13 13 (package 14 - (name crypto) 14 + (name nox-crypto) 15 15 (synopsis "Simple symmetric cryptography (fork of mirage-crypto)") 16 16 (description 17 17 "WARNING: This is an experimental fork of mirage-crypto. Do not use in production. Use mirage-crypto instead: https://github.com/mirage/mirage-crypto. Crypto provides symmetric ciphers (DES, AES, RC4, ChaCha20/Poly1305).") ··· 30 30 (result (< 1.5)))) 31 31 32 32 (package 33 - (name crypto-pk) 33 + (name nox-crypto-pk) 34 34 (synopsis "Simple public-key cryptography (fork of mirage-crypto-pk)") 35 35 (description 36 36 "WARNING: This is an experimental fork of mirage-crypto-pk. Do not use in production. Use mirage-crypto-pk instead: https://github.com/mirage/mirage-crypto. Crypto-pk provides public-key cryptography (RSA, DSA, DH).") ··· 42 42 (ounit2 :with-test) 43 43 (randomconv (and :with-test (>= 0.2.0))) 44 44 (ohex (and :with-test (>= 0.2.0))) 45 - (crypto (= :version)) 46 - (crypto-rng (= :version)) 45 + (nox-crypto (= :version)) 46 + (nox-crypto-rng (= :version)) 47 47 (digestif (>= 1.2.0)) 48 48 (zarith (>= 1.13)) 49 49 (mdx :with-test) ··· 51 51 (conflicts ocaml-freestanding)) 52 52 53 53 (package 54 - (name crypto-rng) 54 + (name nox-crypto-rng) 55 55 (synopsis "A cryptographically secure PRNG (fork of mirage-crypto-rng)") 56 56 (description 57 57 "WARNING: This is an experimental fork of mirage-crypto-rng. Do not use in production. Use mirage-crypto-rng instead: https://github.com/mirage/mirage-crypto. Crypto-rng provides a random number generator interface, and implementations: Fortuna, HMAC-DRBG, getrandom/getentropy based (in the unix sublibrary).") ··· 62 62 (dune-configurator (>= 2.0.0)) 63 63 logs 64 64 fmt 65 - (crypto (= :version)) 65 + (nox-crypto (= :version)) 66 66 (digestif (>= 1.1.4)) 67 67 (ounit2 :with-test) 68 68 (randomconv (and :with-test (>= 0.2.0))) ··· 71 71 (conflicts (mirage-runtime (< 3.8.0)))) 72 72 73 73 (package 74 - (name crypto-ec) 74 + (name nox-crypto-ec) 75 75 (synopsis "Elliptic Curve Cryptography (fork of mirage-crypto-ec)") 76 76 (description 77 77 "WARNING: This is an experimental fork of mirage-crypto-ec. Do not use in production. Use mirage-crypto-ec instead: https://github.com/mirage/mirage-crypto. An implementation of key exchange (ECDH) and digital signature (ECDSA/EdDSA) algorithms using code from Fiat. The curves P256, P384, P521, and 25519 (X25519, Ed25519) are implemented.") ··· 82 82 dune-configurator 83 83 (eqaf (>= 0.7)) 84 84 fmt 85 - (crypto-rng (= :version)) 85 + (nox-crypto-rng (= :version)) 86 86 (digestif (>= 1.2.0)) 87 87 (alcotest (and :with-test (>= 0.8.1))) 88 88 (asn1-combinators (and :with-test (>= 0.3.1)))
+2 -2
ocaml-crypto/ec/dune
··· 1 1 (library 2 2 (name crypto_ec) 3 - (public_name crypto-ec) 4 - (libraries eqaf crypto-rng digestif fmt) 3 + (public_name nox-crypto-ec) 4 + (libraries eqaf nox-crypto-rng digestif fmt) 5 5 (foreign_stubs 6 6 (language c) 7 7 (names
+1 -1
ocaml-crypto/ec/native/dune
··· 1 1 (mdx 2 - (libraries crypto crypto.c crypto-ec crypto-pk crypto-rng crypto-rng.unix) 2 + (libraries nox-crypto nox-crypto.c nox-crypto-ec nox-crypto-pk nox-crypto-rng nox-crypto-rng.unix) 3 3 (files README.md))
+2 -2
ocaml-crypto/fuzz/dune
··· 1 - ; Crowbar fuzz testing for crypto 1 + ; Crowbar fuzz testing for nox-crypto 2 2 ; 3 3 ; Quick check: dune build @fuzz 4 4 ; With AFL: crow start --cpus=4 5 5 6 6 (executable 7 7 (name fuzz) 8 - (libraries crypto alcobar)) 8 + (libraries nox-crypto alcobar)) 9 9 10 10 (rule 11 11 (alias runtest)
+1 -1
ocaml-crypto/lib/c/dune
··· 1 1 (library 2 2 (name crypto_c) 3 - (public_name crypto.c) 3 + (public_name nox-crypto.c) 4 4 (implements crypto) 5 5 (foreign_stubs 6 6 (language c)
+2 -2
ocaml-crypto/lib/dune
··· 1 1 (library 2 2 (name crypto) 3 - (public_name crypto) 3 + (public_name nox-crypto) 4 4 (libraries eqaf fmt) 5 5 (virtual_modules native) 6 - (default_implementation crypto.c) 6 + (default_implementation nox-crypto.c) 7 7 (private_modules 8 8 aead 9 9 chacha20
+1 -1
ocaml-crypto/lib/ocaml/dune
··· 1 1 (library 2 2 (name crypto_ocaml) 3 - (public_name crypto.ocaml) 3 + (public_name nox-crypto.ocaml) 4 4 (implements crypto) 5 5 (private_modules aes_pure ghash_pure))
+2 -2
ocaml-crypto/pk/dune
··· 1 1 (library 2 2 (name crypto_pk) 3 - (public_name crypto-pk) 4 - (libraries zarith crypto crypto-rng eqaf) 3 + (public_name nox-crypto-pk) 4 + (libraries zarith nox-crypto nox-crypto-rng eqaf) 5 5 (private_modules common dh dsa rsa z_extra))
+2 -2
ocaml-crypto/rng/dune
··· 1 1 (library 2 2 (name crypto_rng) 3 - (public_name crypto-rng) 4 - (libraries crypto digestif logs fmt) 3 + (public_name nox-crypto-rng) 4 + (libraries nox-crypto digestif logs fmt) 5 5 (private_modules entropy fortuna hmac_drbg rng))
+2 -2
ocaml-crypto/rng/unix/dune
··· 15 15 16 16 (library 17 17 (name crypto_rng_unix) 18 - (public_name crypto-rng.unix) 18 + (public_name nox-crypto-rng.unix) 19 19 (modules crypto_rng_unix urandom getentropy) 20 - (libraries crypto-rng unix logs threads.posix) 20 + (libraries nox-crypto-rng unix logs threads.posix) 21 21 (foreign_stubs 22 22 (language c) 23 23 (include_dirs ../../lib/c)
+9 -9
ocaml-crypto/test/dune
··· 2 2 (name test) 3 3 (libraries 4 4 alcotest 5 - crypto 6 - crypto-ec 7 - crypto-rng 8 - crypto-rng.unix 5 + nox-crypto 6 + nox-crypto-ec 7 + nox-crypto-rng 8 + nox-crypto-rng.unix 9 9 ohex 10 10 fmt 11 11 test_common ··· 24 24 25 25 ; Differential testing: same test code, three backends: 26 26 ; 27 - ; - test_pure_c.exe -- crypto.c (C, AES-NI / BearSSL ct64) 28 - ; - test_pure.exe -- crypto.ocaml (pure OCaml, bitsliced) 29 - ; - test_pure.bc.js -- crypto.ocaml + JS (pure OCaml under Node.js) 27 + ; - test_pure_c.exe -- nox-crypto.c (C, AES-NI / BearSSL ct64) 28 + ; - test_pure.exe -- nox-crypto.ocaml (pure OCaml, bitsliced) 29 + ; - test_pure.bc.js -- nox-crypto.ocaml + JS (pure OCaml under Node.js) 30 30 ; 31 31 ; Each runs the same test code from test_pure.ml; the output is captured 32 32 ; and diffed. All three must agree byte-for-byte, otherwise the ··· 38 38 (name test_pure) 39 39 (modules test_pure) 40 40 (modes js exe) 41 - (libraries crypto crypto.ocaml)) 41 + (libraries nox-crypto nox-crypto.ocaml)) 42 42 43 43 (executable 44 44 (name test_pure_c) 45 45 (modules test_pure_c) 46 - (libraries crypto crypto.c)) 46 + (libraries nox-crypto nox-crypto.c)) 47 47 48 48 (rule 49 49 (copy test_pure.ml test_pure_c.ml))
+1 -1
ocaml-crypto/test/ec/helpers/dune
··· 1 1 (library 2 2 (name test_common) 3 - (libraries crypto ounit2 ohex fmt) 3 + (libraries nox-crypto ounit2 ohex fmt) 4 4 (optional))
+1 -1
ocaml-crypto/test/ec/wycheproof/dune
··· 1 1 (library 2 2 (name wycheproof) 3 - (libraries alcotest fmt json crypto-ec asn1-combinators digestif ohex) 3 + (libraries alcotest fmt json nox-crypto-ec asn1-combinators digestif ohex) 4 4 (optional))
+1 -1
ocaml-crypto/test/pk/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries alcotest crypto-pk crypto-rng crypto-rng.unix ohex)) 3 + (libraries alcotest nox-crypto-pk nox-crypto-rng nox-crypto-rng.unix ohex))
+1 -1
ocaml-crypto/test/rng/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries alcotest crypto-rng crypto-rng.unix digestif)) 3 + (libraries alcotest nox-crypto-rng nox-crypto-rng.unix digestif))
+1 -1
ocaml-crypto/test/rng/unix/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries alcotest crypto-rng crypto-rng.unix)) 3 + (libraries alcotest nox-crypto-rng nox-crypto-rng.unix))
+4 -4
ocaml-crypto/tests/dune
··· 3 3 (libraries 4 4 alcotest 5 5 fmt 6 - crypto 7 - crypto-rng 8 - crypto-rng.unix 6 + nox-crypto 7 + nox-crypto-rng 8 + nox-crypto-rng.unix 9 9 random_selftests 10 10 ohex 11 - crypto-pk 11 + nox-crypto-pk 12 12 digestif))
+1 -1
ocaml-crypto/tests/random_selftests/dune
··· 1 1 (library 2 2 (name random_selftests) 3 - (libraries alcotest crypto crypto-rng randomconv) 3 + (libraries alcotest nox-crypto nox-crypto-rng randomconv) 4 4 (optional))
+2 -2
ocaml-csrf/csrf.opam
··· 12 12 depends: [ 13 13 "ocaml" {>= "4.08"} 14 14 "dune" {>= "3.21" & >= "3.0"} 15 - "kdf" {>= "0.1"} 15 + "nox-kdf" {>= "0.1"} 16 16 "digestif" {>= "1.2"} 17 17 "eqaf" {>= "0.9"} 18 18 "alcotest" {with-test} 19 19 "alcobar" {with-test} 20 - "crypto-rng" {with-test & >= "0.11.0"} 20 + "nox-crypto-rng" {with-test & >= "0.11.0"} 21 21 "mdx" {with-test} 22 22 "odoc" {with-doc} 23 23 ]
+2 -2
ocaml-csrf/dune-project
··· 17 17 (depends 18 18 (ocaml (>= 4.08)) 19 19 (dune (>= 3.0)) 20 - (kdf (>= 0.1)) 20 + (nox-kdf (>= 0.1)) 21 21 (digestif (>= 1.2)) 22 22 (eqaf (>= 0.9)) 23 23 (alcotest :with-test) 24 24 (alcobar :with-test) 25 - (crypto-rng (and :with-test (>= 0.11.0))) 25 + (nox-crypto-rng (and :with-test (>= 0.11.0))) 26 26 (mdx :with-test) 27 27 (odoc :with-doc)))
+1 -1
ocaml-csrf/fuzz/dune
··· 2 2 3 3 (executable 4 4 (name fuzz) 5 - (libraries csrf alcobar crypto-rng.unix)) 5 + (libraries csrf alcobar nox-crypto-rng.unix)) 6 6 7 7 (rule 8 8 (alias runtest)
+1 -1
ocaml-csrf/lib/dune
··· 1 1 (library 2 2 (name csrf) 3 3 (public_name csrf) 4 - (libraries kdf.hkdf digestif eqaf)) 4 + (libraries nox-kdf.hkdf digestif eqaf))
+1 -1
ocaml-csrf/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries csrf kdf.hkdf alcotest crypto-rng.unix)) 3 + (libraries csrf nox-kdf.hkdf alcotest nox-crypto-rng.unix))
+1 -1
ocaml-csv/csv.opam ocaml-csv/nox-csv.opam
··· 16 16 "bytesrw" 17 17 "uutf" 18 18 "mdx" {with-test} 19 - "loc" 19 + "nox-loc" 20 20 "odoc" {with-doc} 21 21 ] 22 22 build: [
ocaml-csv/csv.opam.template ocaml-csv/nox-csv.opam.template
+1 -1
ocaml-csv/dune
··· 6 6 (files 7 7 README.md 8 8 ) 9 - (libraries csv bytesrw)) 9 + (libraries nox-csv bytesrw))
+3 -3
ocaml-csv/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name csv) 3 + (name nox-csv) 4 4 (source (tangled gazagnaire.org/ocaml-csv)) 5 5 (formatting (enabled_for ocaml)) 6 6 (license ISC) ··· 10 10 (generate_opam_files true) 11 11 12 12 (package 13 - (name csv) 13 + (name nox-csv) 14 14 (synopsis "Declarative CSV codecs") 15 15 (description 16 16 "Bidirectional codec system for CSV files, inspired by Jsont's approach to JSON codecs. Define typed codecs for your OCaml types and use them to decode CSV rows and encode values back to CSV.") ··· 22 22 bytesrw 23 23 uutf 24 24 (mdx :with-test) 25 - loc) 25 + nox-loc) 26 26 )
+1 -1
ocaml-csv/fuzz/dune
··· 8 8 9 9 (executable 10 10 (name fuzz) 11 - (libraries csv alcobar uutf)) 11 + (libraries nox-csv alcobar uutf)) 12 12 13 13 (rule 14 14 (alias runtest)
+2 -2
ocaml-csv/lib/dune
··· 1 1 (library 2 2 (name csv) 3 - (public_name csv) 4 - (libraries fmt bytesrw (re_export loc) uutf)) 3 + (public_name nox-csv) 4 + (libraries fmt bytesrw (re_export nox-loc) uutf))
+1 -1
ocaml-csv/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries csv alcotest fmt bytesrw)) 3 + (libraries nox-csv alcotest fmt bytesrw))
+1 -1
ocaml-delegation/delegation.opam
··· 18 18 depends: [ 19 19 "dune" {>= "3.21"} 20 20 "ocaml" {>= "5.1"} 21 - "x509" {>= "1.0"} 21 + "nox-x509" {>= "1.0"} 22 22 "asn1-combinators" {>= "0.3"} 23 23 "fmt" {>= "0.9"} 24 24 "logs" {>= "0.7"}
+1 -1
ocaml-delegation/dune-project
··· 29 29 pluggable resource types via functors.") 30 30 (depends 31 31 (ocaml (>= 5.1)) 32 - (x509 (>= 1.0)) 32 + (nox-x509 (>= 1.0)) 33 33 (asn1-combinators (>= 0.3)) 34 34 (fmt (>= 0.9)) 35 35 (logs (>= 0.7))
+1 -1
ocaml-delegation/lib/dune
··· 2 2 (name delegation) 3 3 (public_name delegation) 4 4 (libraries 5 - x509 5 + nox-x509 6 6 asn1-combinators 7 7 fmt 8 8 logs
+2 -2
ocaml-dpop/dpop.opam
··· 13 13 "ocaml" {>= "5.1"} 14 14 "dune" {>= "3.21" & >= "3.21"} 15 15 "fmt" {>= "0.9"} 16 - "crypto-rng" {>= "0.11.0"} 17 - "crypto-ec" {>= "0.11.0"} 16 + "nox-crypto-rng" {>= "0.11.0"} 17 + "nox-crypto-ec" {>= "0.11.0"} 18 18 "digestif" {>= "1.0"} 19 19 "base64" {>= "3.0"} 20 20 "json" {>= "0.2.0"}
+1 -1
ocaml-dpop/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries dpop crypto-rng.unix)) 7 + (libraries dpop nox-crypto-rng.unix))
+2 -2
ocaml-dpop/dune-project
··· 18 18 (ocaml (>= 5.1)) 19 19 (dune (>= 3.21)) 20 20 (fmt (>= 0.9)) 21 - (crypto-rng (>= 0.11.0)) 22 - (crypto-ec (>= 0.11.0)) 21 + (nox-crypto-rng (>= 0.11.0)) 22 + (nox-crypto-ec (>= 0.11.0)) 23 23 (digestif (>= 1.0)) 24 24 (base64 (>= 3.0)) 25 25 (json (>= 0.2.0))
+1 -1
ocaml-dpop/lib/dune
··· 1 1 (library 2 2 (name dpop) 3 3 (public_name dpop) 4 - (libraries crypto-ec crypto-rng digestif base64 json fmt unix)) 4 + (libraries nox-crypto-ec nox-crypto-rng digestif base64 json fmt unix))
+1 -1
ocaml-dpop/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries dpop alcotest crypto-rng.unix crypto-ec digestif base64 fmt)) 3 + (libraries dpop alcotest nox-crypto-rng.unix nox-crypto-ec digestif base64 fmt))
+1 -1
ocaml-fsr/test/interop/cryptolib/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries fsr csv alcotest) 3 + (libraries fsr nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+3 -3
ocaml-gauth/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
ocaml-gauth/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
ocaml-gauth/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
ocaml-gauth/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))
+2 -2
ocaml-gdocs/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
ocaml-gdocs/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
ocaml-gdocs/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
ocaml-gdocs/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))
+3 -3
ocaml-git/bench/dune
··· 1 1 (executable 2 2 (name pack_bench) 3 - (libraries git memtrace)) 3 + (libraries git nox-memtrace)) 4 4 5 5 (executable 6 6 (name pack_bench_pread) 7 - (libraries bytesrw-eio eio_main git memtrace)) 7 + (libraries bytesrw-eio eio_main git nox-memtrace)) 8 8 9 9 (executable 10 10 (name pack_stress) 11 - (libraries bytesrw-eio eio_main git memtrace)) 11 + (libraries bytesrw-eio eio_main git nox-memtrace)) 12 12 13 13 (executable 14 14 (name pack_diag)
+2 -1
ocaml-git/bin/dune
··· 1 1 (executable 2 2 (name git_x) 3 3 (public_name git-x) 4 - (libraries git eio_posix cmdliner logs vlog tty memtrace monopam-info)) 4 + (package nox-git) 5 + (libraries git eio_posix cmdliner logs vlog nox-tty nox-memtrace monopam-info))
+4 -4
ocaml-git/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name git) 3 + (name nox-git) 4 4 (version 4.0.0) 5 5 (formatting (enabled_for ocaml)) 6 6 ··· 15 15 (documentation https://mirage.github.io/ocaml-git/) 16 16 17 17 (package 18 - (name git) 18 + (name nox-git) 19 19 (synopsis "Git format in pure OCaml") 20 20 (tags (org:blacksun git storage)) 21 21 (description " ··· 37 37 (cmdliner (>= 1.3.0)) 38 38 (logs (>= 0.7.0)) 39 39 (vlog (>= 0.1)) 40 - (tty (>= 0.1)) 41 - (memtrace (>= 0.2)) 40 + (nox-tty (>= 0.1)) 41 + (nox-memtrace (>= 0.2)) 42 42 monopam-info 43 43 (ptime (>= 1.0.0)) 44 44 (merge3 (>= 0.1.0))
+2 -2
ocaml-git/git.opam ocaml-git/nox-git.opam
··· 33 33 "cmdliner" {>= "1.3.0"} 34 34 "logs" {>= "0.7.0"} 35 35 "vlog" {>= "0.1"} 36 - "tty" {>= "0.1"} 37 - "memtrace" {>= "0.2"} 36 + "nox-tty" {>= "0.1"} 37 + "nox-memtrace" {>= "0.2"} 38 38 "monopam-info" 39 39 "ptime" {>= "1.0.0"} 40 40 "merge3" {>= "0.1.0"}
ocaml-git/git.opam.template ocaml-git/nox-git.opam.template
+1 -1
ocaml-git/lib/dune
··· 1 1 (library 2 2 (name git) 3 - (public_name git) 3 + (public_name nox-git) 4 4 (libraries bytesrw bytesrw-eio bytesrw.zlib digestif eio fmt fpath leb128 logs merge3 ptime re requests uri))
+1 -1
ocaml-gpt/bin/dune
··· 1 1 (executables 2 2 (names gpt_inspect) 3 - (libraries gpt cmdliner unix)) 3 + (libraries nox-gpt cmdliner unix))
+1 -1
ocaml-gpt/c/dune
··· 1 1 (executable 2 2 (name gen) 3 - (libraries gpt wire.3d)) 3 + (libraries nox-gpt wire.3d)) 4 4 5 5 (rule 6 6 (mode promote)
+1 -1
ocaml-gpt/dune
··· 6 6 7 7 (mdx 8 8 (files README.md) 9 - (libraries gpt uuidm fmt)) 9 + (libraries nox-gpt uuidm fmt))
+2 -2
ocaml-gpt/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name gpt) 4 + (name nox-gpt) 5 5 6 6 (generate_opam_files true) 7 7 ··· 19 19 20 20 21 21 (package 22 - (name gpt) 22 + (name nox-gpt) 23 23 (synopsis "A library to manipulate GUID Partition Tables") 24 24 (tags (org:blacksun codec.disk)) 25 25 (description
+1 -1
ocaml-gpt/fuzz/dune
··· 5 5 6 6 (executable 7 7 (name fuzz) 8 - (libraries gpt bytesrw alcobar)) 8 + (libraries nox-gpt bytesrw alcobar)) 9 9 10 10 (rule 11 11 (alias runtest)
ocaml-gpt/gpt.opam ocaml-gpt/nox-gpt.opam
ocaml-gpt/gpt.opam.template ocaml-gpt/nox-gpt.opam.template
+1 -1
ocaml-gpt/lib/dune
··· 1 1 (library 2 - (public_name gpt) 2 + (public_name nox-gpt) 3 3 (name gpt) 4 4 (libraries bytesrw uuidm checkseum fmt mbr wire))
+1 -1
ocaml-gpt/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries gpt wire alcotest fmt)) 3 + (libraries nox-gpt wire alcotest fmt))
+4 -4
ocaml-hap/dune-project
··· 23 23 (ocaml (>= 4.14)) 24 24 (srp (>= 0.1)) 25 25 (mdns (>= 0.1)) 26 - (kdf (>= 0.1)) 27 - (crypto (>= 1.0.0)) 28 - (crypto-ec (>= 1.0.0)) 29 - (crypto-rng (>= 1.0.0)) 26 + (nox-kdf (>= 0.1)) 27 + (nox-crypto (>= 1.0.0)) 28 + (nox-crypto-ec (>= 1.0.0)) 29 + (nox-crypto-rng (>= 1.0.0)) 30 30 (eio (>= 1.0)) 31 31 (re (>= 1.10)) 32 32 (requests (>= 0.1))
+4 -4
ocaml-hap/hap.opam
··· 16 16 "ocaml" {>= "4.14"} 17 17 "srp" {>= "0.1"} 18 18 "mdns" {>= "0.1"} 19 - "kdf" {>= "0.1"} 20 - "crypto" {>= "1.0.0"} 21 - "crypto-ec" {>= "1.0.0"} 22 - "crypto-rng" {>= "1.0.0"} 19 + "nox-kdf" {>= "0.1"} 20 + "nox-crypto" {>= "1.0.0"} 21 + "nox-crypto-ec" {>= "1.0.0"} 22 + "nox-crypto-rng" {>= "1.0.0"} 23 23 "eio" {>= "1.0"} 24 24 "re" {>= "1.10"} 25 25 "requests" {>= "0.1"}
+4 -4
ocaml-hap/lib/dune
··· 5 5 srp 6 6 mdns 7 7 requests 8 - kdf.hkdf 9 - crypto 10 - crypto-ec 11 - crypto-rng 8 + nox-kdf.hkdf 9 + nox-crypto 10 + nox-crypto-ec 11 + nox-crypto-rng 12 12 eio 13 13 re 14 14 json
+1 -1
ocaml-hkdf/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries hkdf)) 7 + (libraries nox-hkdf))
+2 -2
ocaml-hkdf/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name hkdf) 3 + (name nox-hkdf) 4 4 (generate_opam_files true) 5 5 (license ISC) 6 6 (authors "Thomas Gazagnaire <thomas@gazagnaire.org>") 7 7 (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 8 8 (source (tangled gazagnaire.org/ocaml-hkdf)) 9 9 (package 10 - (name hkdf) 10 + (name nox-hkdf) 11 11 (synopsis "HMAC-based Extract-and-Expand Key Derivation Function (RFC 5869)") 12 12 (tags (org:blacksun crypto)) 13 13 (depends
ocaml-hkdf/hkdf.opam ocaml-hkdf/nox-hkdf.opam
ocaml-hkdf/hkdf.opam.template ocaml-hkdf/nox-hkdf.opam.template
+1 -1
ocaml-hkdf/lib/dune
··· 1 1 (library 2 2 (name hkdf) 3 - (public_name hkdf) 3 + (public_name nox-hkdf) 4 4 (libraries digestif))
+1 -1
ocaml-hkdf/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries hkdf alcotest)) 3 + (libraries nox-hkdf alcotest))
+1 -1
ocaml-hkdf/test/interop/cryptography/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries hkdf csv alcotest) 3 + (libraries nox-hkdf nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-http/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries http)) 7 + (libraries nox-http))
+3 -3
ocaml-http/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name http) 3 + (name nox-http) 4 4 5 5 (generate_opam_files true) 6 6 ··· 11 11 (source (tangled gazagnaire.org/ocaml-http)) 12 12 13 13 (package 14 - (name http) 14 + (name nox-http) 15 15 (synopsis "HTTP types: headers, status codes, methods, bodies, MIME types") 16 16 (tags (org:blacksun network http)) 17 17 (depends 18 18 (ocaml (>= 5.1)) 19 19 base64 20 - crypto-rng 20 + nox-crypto-rng 21 21 cstruct 22 22 eio 23 23 fmt
+1 -1
ocaml-http/http.opam ocaml-http/nox-http.opam
··· 11 11 "dune" {>= "3.21"} 12 12 "ocaml" {>= "5.1"} 13 13 "base64" 14 - "crypto-rng" 14 + "nox-crypto-rng" 15 15 "cstruct" 16 16 "eio" 17 17 "fmt"
ocaml-http/http.opam.template ocaml-http/nox-http.opam.template
+2 -2
ocaml-http/lib/dune
··· 1 1 (library 2 2 (name http) 3 - (public_name http) 4 - (libraries logs ptime eio json cstruct magic-mime base64 crypto-rng uri fmt)) 3 + (public_name nox-http) 4 + (libraries logs ptime eio json cstruct magic-mime base64 nox-crypto-rng uri fmt))
+1 -1
ocaml-http/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries http alcotest crypto-rng.unix eio_main)) 3 + (libraries nox-http alcotest nox-crypto-rng.unix eio_main))
+1 -1
ocaml-http/test/interop/boto3/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries http csv alcotest fmt) 3 + (libraries nox-http nox-csv alcotest fmt) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-json/bench/dune
··· 1 1 (executable 2 2 (name bench) 3 - (libraries json unix memtrace)) 3 + (libraries json unix nox-memtrace))
+1 -1
ocaml-json/dune-project
··· 29 29 (odoc :with-doc) 30 30 brr 31 31 fmt 32 - loc)) 32 + nox-loc))
+1 -1
ocaml-json/json.opam
··· 22 22 "odoc" {with-doc} 23 23 "brr" 24 24 "fmt" 25 - "loc" 25 + "nox-loc" 26 26 ] 27 27 build: [ 28 28 ["dune" "subst"] {dev}
+1 -1
ocaml-json/lib/dune
··· 2 2 (name json) 3 3 (public_name json) 4 4 (private_modules core) 5 - (libraries fmt bytesrw loc)) 5 + (libraries fmt bytesrw nox-loc)) 6 6 7 7 (mdx 8 8 (files json.mli codec.mli value.mli tape.mli error.mli sort.mli)
+1 -1
ocaml-jwt/dune
··· 6 6 7 7 (mdx 8 8 (files README.md) 9 - (libraries jwt ptime)) 9 + (libraries nox-jwt ptime))
+8 -8
ocaml-jwt/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name jwt) 3 + (name nox-jwt) 4 4 5 5 (generate_opam_files true) 6 6 ··· 10 10 (source (tangled anil.recoil.org/ocaml-jsonwt)) 11 11 12 12 (package 13 - (name jwt) 13 + (name nox-jwt) 14 14 (synopsis "JSON Web Token (JWT) and CBOR Web Token (CWT) for OCaml") 15 15 (tags (org:blacksun crypto codec.text)) 16 16 (description ··· 24 24 (fmt (>= 0.9)) 25 25 (json (>= 0.2.0)) 26 26 (bytesrw (>= 0.1.0)) 27 - crypto 28 - crypto-pk 29 - crypto-ec 30 - crypto-rng 27 + nox-crypto 28 + nox-crypto-pk 29 + nox-crypto-ec 30 + nox-crypto-rng 31 31 (digestif (>= 1.0.0)) 32 32 (eqaf (>= 0.9)) 33 33 (cstruct (>= 6.0.0)) 34 34 (base64 (>= 3.0.0)) 35 35 (ptime (>= 1.0.0)) 36 - cbor 36 + nox-cbor 37 37 (alcotest :with-test) 38 38 (odoc :with-doc) 39 39 (mdx :with-test) 40 - loc)) 40 + nox-loc))
+1 -1
ocaml-jwt/fuzz/dune
··· 5 5 6 6 (executable 7 7 (name fuzz) 8 - (libraries jwt alcobar)) 8 + (libraries nox-jwt alcobar)) 9 9 10 10 (rule 11 11 (alias runtest)
+6 -6
ocaml-jwt/jwt.opam ocaml-jwt/nox-jwt.opam
··· 22 22 "fmt" {>= "0.9"} 23 23 "json" {>= "0.2.0"} 24 24 "bytesrw" {>= "0.1.0"} 25 - "crypto" 26 - "crypto-pk" 27 - "crypto-ec" 28 - "crypto-rng" 25 + "nox-crypto" 26 + "nox-crypto-pk" 27 + "nox-crypto-ec" 28 + "nox-crypto-rng" 29 29 "digestif" {>= "1.0.0"} 30 30 "eqaf" {>= "0.9"} 31 31 "cstruct" {>= "6.0.0"} 32 32 "base64" {>= "3.0.0"} 33 33 "ptime" {>= "1.0.0"} 34 - "cbor" 34 + "nox-cbor" 35 35 "alcotest" {with-test} 36 36 "odoc" {with-doc} 37 37 "mdx" {with-test} 38 - "loc" 38 + "nox-loc" 39 39 ] 40 40 build: [ 41 41 ["dune" "subst"] {dev}
ocaml-jwt/jwt.opam.template ocaml-jwt/nox-jwt.opam.template
+6 -6
ocaml-jwt/lib/dune
··· 1 1 (library 2 2 (name jwt) 3 - (public_name jwt) 3 + (public_name nox-jwt) 4 4 (libraries 5 - cbor 5 + nox-cbor 6 6 json 7 7 bytesrw 8 - crypto 9 - crypto-pk 10 - crypto-ec 11 - crypto-rng 8 + nox-crypto 9 + nox-crypto-pk 10 + nox-crypto-ec 11 + nox-crypto-rng 12 12 digestif 13 13 eqaf 14 14 cstruct
+1 -1
ocaml-jwt/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries jwt alcotest base64 ptime)) 3 + (libraries nox-jwt alcotest base64 ptime))
+1 -1
ocaml-linkedin/bin/dune
··· 2 2 (name main) 3 3 (public_name linkedin) 4 4 (package linkedin) 5 - (libraries linkedin cmdliner eio_main fmt logs vlog tty monopam-info xdge)) 5 + (libraries linkedin cmdliner eio_main fmt logs vlog nox-tty monopam-info nox-xdge))
+5 -5
ocaml-linkedin/dune-project
··· 21 21 "Access LinkedIn profile data and feed posts from OCaml using the Voyager API. Provides typed bindings for profiles and posts.") 22 22 (depends 23 23 (ocaml (>= 5.1)) 24 - (cookie (>= 0.1)) 24 + (nox-cookie (>= 0.1)) 25 25 (eio (>= 1.0)) 26 26 (ptime (>= 1.0)) 27 27 (requests (>= 0.1)) 28 28 (fmt (>= 0.9)) 29 29 (logs (>= 0.7)) 30 30 (json (>= 0.1)) 31 - (crypto (>= 0.1)) 32 - (kdf (>= 0.1)) 31 + (nox-crypto (>= 0.1)) 32 + (nox-kdf (>= 0.1)) 33 33 (uri (>= 4.0)) 34 34 (cmdliner (>= 1.2)) 35 35 (lambdasoup (>= 1.0)) 36 36 (re (>= 1.11)) 37 37 eio_main 38 38 monopam-info 39 - tty 39 + nox-tty 40 40 vlog 41 - xdge 41 + nox-xdge 42 42 (mdx :with-test) 43 43 (alcotest :with-test)))
+4 -4
ocaml-linkedin/lib/dune
··· 6 6 fmt 7 7 logs 8 8 json 9 - crypto 10 - kdf.pbkdf 9 + nox-crypto 10 + nox-kdf.pbkdf 11 11 requests 12 - cookie 13 - cookie.jar 12 + nox-cookie 13 + nox-cookie.jar 14 14 lambdasoup 15 15 re 16 16 ptime
+5 -5
ocaml-linkedin/linkedin.opam
··· 12 12 depends: [ 13 13 "dune" {>= "3.21"} 14 14 "ocaml" {>= "5.1"} 15 - "cookie" {>= "0.1"} 15 + "nox-cookie" {>= "0.1"} 16 16 "eio" {>= "1.0"} 17 17 "ptime" {>= "1.0"} 18 18 "requests" {>= "0.1"} 19 19 "fmt" {>= "0.9"} 20 20 "logs" {>= "0.7"} 21 21 "json" {>= "0.1"} 22 - "crypto" {>= "0.1"} 23 - "kdf" {>= "0.1"} 22 + "nox-crypto" {>= "0.1"} 23 + "nox-kdf" {>= "0.1"} 24 24 "uri" {>= "4.0"} 25 25 "cmdliner" {>= "1.2"} 26 26 "lambdasoup" {>= "1.0"} 27 27 "re" {>= "1.11"} 28 28 "eio_main" 29 29 "monopam-info" 30 - "tty" 30 + "nox-tty" 31 31 "vlog" 32 - "xdge" 32 + "nox-xdge" 33 33 "mdx" {with-test} 34 34 "alcotest" {with-test} 35 35 "odoc" {with-doc}
+1 -1
ocaml-loc/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries loc)) 7 + (libraries nox-loc))
+2 -2
ocaml-loc/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name loc) 4 + (name nox-loc) 5 5 6 6 (generate_opam_files true) 7 7 ··· 11 11 (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 12 12 13 13 (package 14 - (name loc) 14 + (name nox-loc) 15 15 (synopsis 16 16 "Source locations and structured errors for text codecs (extracted from jsont)") 17 17 (tags (org:blacksun parser text))
+1 -1
ocaml-loc/lib/dune
··· 1 1 (library 2 2 (name loc) 3 - (public_name loc) 3 + (public_name nox-loc) 4 4 (libraries fmt))
ocaml-loc/loc.opam ocaml-loc/nox-loc.opam
ocaml-loc/loc.opam.template ocaml-loc/nox-loc.opam.template
+1 -1
ocaml-loc/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries loc fmt alcotest)) 3 + (libraries nox-loc fmt alcotest))
+1 -1
ocaml-ltp/test/interop/ion/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries ltp csv alcotest) 3 + (libraries ltp nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+5 -5
ocaml-matter/dune-project
··· 22 22 as specified in the Matter Core Specification.") 23 23 (depends 24 24 (ocaml (>= 4.14)) 25 - (crypto (>= 0.1)) 26 - (crypto-ec (>= 0.1)) 27 - (crypto-rng (>= 0.1)) 25 + (nox-crypto (>= 0.1)) 26 + (nox-crypto-ec (>= 0.1)) 27 + (nox-crypto-rng (>= 0.1)) 28 28 (digestif (>= 1.0)) 29 29 (eio (>= 1.0)) 30 - (kdf (>= 0.1)) 30 + (nox-kdf (>= 0.1)) 31 31 (mdns (>= 0.1)) 32 32 (spake2 (>= 0.1)) 33 33 (cstruct (>= 6.0)) ··· 38 38 (cmdliner (>= 1.3)) 39 39 eio_main 40 40 vlog 41 - (x509 (>= 1.0)) 41 + (nox-x509 (>= 1.0)) 42 42 (alcotest :with-test) 43 43 (mdx :with-test) 44 44 (alcobar :with-test)))
+5 -5
ocaml-matter/lib/dune
··· 3 3 (public_name matter) 4 4 (libraries 5 5 cstruct 6 - crypto-ec 7 - crypto-rng 6 + nox-crypto-ec 7 + nox-crypto-rng 8 8 digestif 9 9 domain-name 10 10 eio 11 11 fmt 12 - kdf.hkdf 12 + nox-kdf.hkdf 13 13 ipaddr 14 14 logs 15 15 mdns 16 - crypto 16 + nox-crypto 17 17 spake2 18 - x509)) 18 + nox-x509))
+5 -5
ocaml-matter/matter.opam
··· 15 15 depends: [ 16 16 "dune" {>= "3.21"} 17 17 "ocaml" {>= "4.14"} 18 - "crypto" {>= "0.1"} 19 - "crypto-ec" {>= "0.1"} 20 - "crypto-rng" {>= "0.1"} 18 + "nox-crypto" {>= "0.1"} 19 + "nox-crypto-ec" {>= "0.1"} 20 + "nox-crypto-rng" {>= "0.1"} 21 21 "digestif" {>= "1.0"} 22 22 "eio" {>= "1.0"} 23 - "kdf" {>= "0.1"} 23 + "nox-kdf" {>= "0.1"} 24 24 "mdns" {>= "0.1"} 25 25 "spake2" {>= "0.1"} 26 26 "cstruct" {>= "6.0"} ··· 31 31 "cmdliner" {>= "1.3"} 32 32 "eio_main" 33 33 "vlog" 34 - "x509" {>= "1.0"} 34 + "nox-x509" {>= "1.0"} 35 35 "alcotest" {with-test} 36 36 "mdx" {with-test} 37 37 "alcobar" {with-test}
+1 -1
ocaml-matter/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries matter alcotest crypto-ec crypto-rng.unix ohex ptime x509)) 3 + (libraries matter alcotest nox-crypto-ec nox-crypto-rng.unix ohex ptime nox-x509))
+1 -1
ocaml-merge3/bench/dune
··· 1 1 (executable 2 2 (name bench) 3 - (libraries merge3 memtrace unix)) 3 + (libraries merge3 nox-memtrace unix))
+1 -1
ocaml-merge3/test/interop/git/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries merge3 csv alcotest) 3 + (libraries merge3 nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-meross/bin/dune
··· 2 2 (name main) 3 3 (public_name meross) 4 4 (package meross) 5 - (libraries meross cmdliner eio_main fmt ipaddr re crypto-rng.unix arp vlog)) 5 + (libraries meross cmdliner eio_main fmt ipaddr re nox-crypto-rng.unix nox-arp vlog))
+2 -2
ocaml-meross/dune-project
··· 26 26 (ipaddr (>= 5.0)) 27 27 (json (>= 0.1.0)) 28 28 (logs (>= 0.7)) 29 - (crypto-rng (>= 1.0)) 29 + (nox-crypto-rng (>= 1.0)) 30 30 (ptime (>= 1.0)) 31 31 (uri (>= 4.0)) 32 - arp 32 + nox-arp 33 33 re 34 34 vlog 35 35 (alcotest :with-test)
+1 -1
ocaml-meross/fuzz/dune
··· 5 5 6 6 (executable 7 7 (name fuzz) 8 - (libraries meross alcobar crypto-rng.unix)) 8 + (libraries meross alcobar nox-crypto-rng.unix)) 9 9 10 10 (rule 11 11 (alias runtest)
+1 -1
ocaml-meross/lib/dune
··· 7 7 fmt 8 8 json 9 9 logs 10 - crypto-rng 10 + nox-crypto-rng 11 11 requests 12 12 ptime 13 13 ptime.clock.os
+2 -2
ocaml-meross/meross.opam
··· 21 21 "ipaddr" {>= "5.0"} 22 22 "json" {>= "0.1.0"} 23 23 "logs" {>= "0.7"} 24 - "crypto-rng" {>= "1.0"} 24 + "nox-crypto-rng" {>= "1.0"} 25 25 "ptime" {>= "1.0"} 26 26 "uri" {>= "4.0"} 27 - "arp" 27 + "nox-arp" 28 28 "re" 29 29 "vlog" 30 30 "alcotest" {with-test}
+1 -1
ocaml-meross/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries meross alcotest eio_main crypto-rng.unix re)) 3 + (libraries meross alcotest eio_main nox-crypto-rng.unix re))
+1 -1
ocaml-meta/dune-project
··· 23 23 (ocaml (>= 4.14.0)) 24 24 (fmt (>= 0.9.0)) 25 25 (bytesrw (>= 0.1.0)) 26 - (loc (>= 0.1)) 26 + (nox-loc (>= 0.1)) 27 27 (alcotest :with-test) 28 28 (alcobar :with-test) 29 29 (bytesrw-eio :with-test))
+1 -1
ocaml-meta/lib/dune
··· 3 3 (public_name meta) 4 4 (libraries 5 5 fmt 6 - (re_export loc))) 6 + (re_export nox-loc)))
+1 -1
ocaml-meta/meta.opam
··· 19 19 "ocaml" {>= "4.14.0"} 20 20 "fmt" {>= "0.9.0"} 21 21 "bytesrw" {>= "0.1.0"} 22 - "loc" {>= "0.1"} 22 + "nox-loc" {>= "0.1"} 23 23 "alcotest" {with-test} 24 24 "alcobar" {with-test} 25 25 "bytesrw-eio" {with-test}
+1 -1
ocaml-mst/bench/dune
··· 1 1 (executable 2 2 (name bench) 3 - (libraries mst memtrace digestif fmt)) 3 + (libraries mst nox-memtrace digestif fmt))
+1 -1
ocaml-mst/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries mst alcotest digestif fmt cbor)) 3 + (libraries mst alcotest digestif fmt nox-cbor))
+1 -1
ocaml-mst/test/interop/atrium/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries mst atp csv alcotest fmt eio) 3 + (libraries mst atp nox-csv alcotest fmt eio) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-mst/test/interop/indigo/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries mst atp csv alcotest fmt eio) 3 + (libraries mst atp nox-csv alcotest fmt eio) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
ocaml-oauth/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
ocaml-oauth/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
ocaml-oauth/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
ocaml-oauth/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
ocaml-oauth/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))
+1 -1
ocaml-oci/bin/dune
··· 2 2 (public_name oci) 3 3 (name main) 4 4 (package oci) 5 - (libraries oci tty fmt eio_main xdg cmdliner dune-build-info vlog)) 5 + (libraries oci nox-tty fmt eio_main xdg cmdliner dune-build-info vlog))
+5 -5
ocaml-oci/dune-project
··· 32 32 ptime 33 33 astring 34 34 dune-build-info 35 - (crypto-rng (>= 1.2.0)) 35 + (nox-crypto-rng (>= 1.2.0)) 36 36 requests 37 37 progress 38 - tar 38 + nox-tar 39 + nox-tar-eio 39 40 terminal 40 41 (eio (>= 1.0)) 41 - tar-eio 42 42 eio_main 43 - tty 43 + nox-tty 44 44 uri 45 45 vlog 46 46 xdg 47 47 osrelease 48 48 (alcotest :with-test) 49 49 (mdx :with-test) 50 - loc)) 50 + nox-loc))
+3 -3
ocaml-oci/lib/dune
··· 8 8 progress 9 9 requests 10 10 astring 11 - tar 12 - tar-eio 11 + nox-tar 12 + nox-tar-eio 13 13 bytesrw 14 14 bytesrw-eio 15 15 bytesrw.zlib 16 - crypto-rng.unix 16 + nox-crypto-rng.unix 17 17 osrelease))
+5 -5
ocaml-oci/oci.opam
··· 25 25 "ptime" 26 26 "astring" 27 27 "dune-build-info" 28 - "crypto-rng" {>= "1.2.0"} 28 + "nox-crypto-rng" {>= "1.2.0"} 29 29 "requests" 30 30 "progress" 31 - "tar" 31 + "nox-tar" 32 + "nox-tar-eio" 32 33 "terminal" 33 34 "eio" {>= "1.0"} 34 - "tar-eio" 35 35 "eio_main" 36 - "tty" 36 + "nox-tty" 37 37 "uri" 38 38 "vlog" 39 39 "xdg" 40 40 "osrelease" 41 41 "alcotest" {with-test} 42 42 "mdx" {with-test} 43 - "loc" 43 + "nox-loc" 44 44 "odoc" {with-doc} 45 45 ] 46 46 build: [
+1 -1
ocaml-oci/test/spec/dune
··· 1 1 (library 2 2 (name oci_test_spec) 3 3 (wrapped false) 4 - (libraries oci oci.spec alcotest astring eio_main loc)) 4 + (libraries oci oci.spec alcotest astring eio_main nox-loc))
+1 -1
ocaml-ocm/test/interop/orekit/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries ocm alcotest csv ptime fmt) 3 + (libraries ocm alcotest nox-csv ptime fmt) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-oem/test/interop/orekit/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries oem alcotest csv fmt) 3 + (libraries oem alcotest nox-csv fmt) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-opam/bench/dune
··· 1 1 (executable 2 2 (name bench) 3 - (libraries opam opam.bytesrw opam-file-format unix memtrace fmt)) 3 + (libraries opam opam.bytesrw opam-file-format unix nox-memtrace fmt))
+1 -1
ocaml-opam/dune-project
··· 23 23 (ocaml (>= 4.14.0)) 24 24 (fmt (>= 0.9.0)) 25 25 (bytesrw (>= 0.1.0)) 26 - (loc (>= 0.1)) 26 + (nox-loc (>= 0.1)) 27 27 (mdx :with-test) 28 28 (alcotest :with-test) 29 29 (bytesrw-eio :with-test))
+1 -1
ocaml-opam/lib/dune
··· 3 3 (public_name opam) 4 4 (libraries 5 5 fmt 6 - (re_export loc))) 6 + (re_export nox-loc)))
+1 -1
ocaml-opam/opam.opam
··· 18 18 "ocaml" {>= "4.14.0"} 19 19 "fmt" {>= "0.9.0"} 20 20 "bytesrw" {>= "0.1.0"} 21 - "loc" {>= "0.1"} 21 + "nox-loc" {>= "0.1"} 22 22 "mdx" {with-test} 23 23 "alcotest" {with-test} 24 24 "bytesrw-eio" {with-test}
+1 -1
ocaml-opm/test/interop/orekit/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries opm alcotest csv fmt) 3 + (libraries opm alcotest nox-csv fmt) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
ocaml-paseto/dune-project
··· 17 17 (depends 18 18 (ocaml (>= 5.1)) 19 19 (dune (>= 3.0)) 20 - (crypto (>= 1.0)) 21 - (crypto-rng (>= 1.0)) 20 + (nox-crypto (>= 1.0)) 21 + (nox-crypto-rng (>= 1.0)) 22 22 (digestif (>= 1.0)) 23 23 (eqaf (>= 0.9)) 24 24 (fmt (>= 0.9))
+1 -1
ocaml-paseto/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries paseto alcobar crypto-rng.unix)) 3 + (libraries paseto alcobar nox-crypto-rng.unix)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
ocaml-paseto/lib/dune
··· 1 1 (library 2 2 (name paseto) 3 3 (public_name paseto) 4 - (libraries crypto crypto-rng digestif eqaf base64 fmt json)) 4 + (libraries nox-crypto nox-crypto-rng digestif eqaf base64 fmt json))
+2 -2
ocaml-paseto/paseto.opam
··· 12 12 depends: [ 13 13 "ocaml" {>= "5.1"} 14 14 "dune" {>= "3.21" & >= "3.0"} 15 - "crypto" {>= "1.0"} 16 - "crypto-rng" {>= "1.0"} 15 + "nox-crypto" {>= "1.0"} 16 + "nox-crypto-rng" {>= "1.0"} 17 17 "digestif" {>= "1.0"} 18 18 "eqaf" {>= "0.9"} 19 19 "fmt" {>= "0.9"}
+1 -1
ocaml-paseto/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries paseto alcotest crypto-rng.unix)) 3 + (libraries paseto alcotest nox-crypto-rng.unix))
+1 -1
ocaml-pds/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries pds eio eio.unix)) 7 + (libraries nox-pds eio eio.unix))
+2 -2
ocaml-pds/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name pds) 4 + (name nox-pds) 5 5 6 6 (generate_opam_files true) 7 7 ··· 11 11 (source (tangled gazagnaire.org/ocaml-pds)) 12 12 13 13 (package 14 - (name pds) 14 + (name nox-pds) 15 15 (synopsis "ATProto Personal Data Server storage for OCaml") 16 16 (tags (org:blacksun atproto storage)) 17 17 (description
+1 -1
ocaml-pds/lib/dune
··· 1 1 (library 2 2 (name pds) 3 - (public_name pds) 3 + (public_name nox-pds) 4 4 (libraries eio atp sqlite))
ocaml-pds/pds.opam ocaml-pds/nox-pds.opam
ocaml-pds/pds.opam.template ocaml-pds/nox-pds.opam.template
+1 -1
ocaml-pds/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries pds alcotest eio_main sqlite)) 3 + (libraries nox-pds alcotest eio_main sqlite))
+1 -1
ocaml-precommit/bin/dune
··· 1 1 (executable 2 2 (name main) 3 3 (public_name precommit) 4 - (libraries precommit cmdliner eio_main vlog tty fmt monopam-info memtrace)) 4 + (libraries precommit cmdliner eio_main vlog nox-tty fmt monopam-info nox-memtrace))
+3 -3
ocaml-precommit/dune-project
··· 24 24 (cmdliner (>= 1.2)) 25 25 (eio (>= 1.0)) 26 26 (fmt (>= 0.9)) 27 - (git (>= 0.1)) 27 + (nox-git (>= 0.1)) 28 28 (re (>= 1.0)) 29 29 eio_main 30 - memtrace 30 + nox-memtrace 31 31 monopam-info 32 - tty 32 + nox-tty 33 33 vlog 34 34 (mdx :with-test) 35 35 (alcotest :with-test)))
+1 -1
ocaml-precommit/lib/dune
··· 1 1 (library 2 2 (name precommit) 3 3 (public_name precommit) 4 - (libraries eio fmt unix re git)) 4 + (libraries eio fmt unix re nox-git))
+3 -3
ocaml-precommit/precommit.opam
··· 15 15 "cmdliner" {>= "1.2"} 16 16 "eio" {>= "1.0"} 17 17 "fmt" {>= "0.9"} 18 - "git" {>= "0.1"} 18 + "nox-git" {>= "0.1"} 19 19 "re" {>= "1.0"} 20 20 "eio_main" 21 - "memtrace" 21 + "nox-memtrace" 22 22 "monopam-info" 23 - "tty" 23 + "nox-tty" 24 24 "vlog" 25 25 "mdx" {with-test} 26 26 "alcotest" {with-test}
+1 -1
ocaml-protobuf/dune-project
··· 29 29 (alcotest (and (>= 1.7) :with-test)) 30 30 (alcobar :with-test) 31 31 (mdx :with-test) 32 - loc)) 32 + nox-loc))
+1 -1
ocaml-protobuf/lib/dune
··· 1 1 (library 2 2 (name protobuf) 3 3 (public_name protobuf) 4 - (libraries bytesrw fmt leb128 loc)) 4 + (libraries bytesrw fmt leb128 nox-loc))
+1 -1
ocaml-protobuf/protobuf.opam
··· 24 24 "alcotest" {>= "1.7" & with-test} 25 25 "alcobar" {with-test} 26 26 "mdx" {with-test} 27 - "loc" 27 + "nox-loc" 28 28 ] 29 29 build: [ 30 30 ["dune" "subst"] {dev}
+1 -1
ocaml-protobuf/test/interop/protoc/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries protobuf csv alcotest fmt) 3 + (libraries protobuf nox-csv alcotest fmt) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-pus/dune-project
··· 29 29 (alcobar :with-test) 30 30 (odoc :with-doc) 31 31 (mdx :with-test) 32 - crc)) 32 + nox-crc))
+1 -1
ocaml-pus/lib/dune
··· 1 1 (library 2 2 (name pus) 3 3 (public_name pus) 4 - (libraries bytesrw crc fmt space-packet wire)) 4 + (libraries bytesrw nox-crc fmt space-packet wire))
+1 -1
ocaml-pus/pus.opam
··· 20 20 "alcobar" {with-test} 21 21 "odoc" {with-doc} 22 22 "mdx" {with-test} 23 - "crc" 23 + "nox-crc" 24 24 ] 25 25 build: [ 26 26 ["dune" "subst"] {dev}
+1 -1
ocaml-pus/test/interop/spacepackets/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries pus csv alcotest) 3 + (libraries pus nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
ocaml-qemu/dune-project
··· 28 28 (logs (>= 0.7.0)) 29 29 (bytesrw (>= 0.1.0)) 30 30 (vlog (>= 0.1.0)) 31 - (tty (>= 0.1.0)) 31 + (nox-tty (>= 0.1.0)) 32 32 (cmdliner (>= 1.2.0)) 33 33 (alcotest :with-test) 34 34 (mdx :with-test) 35 - loc)) 35 + nox-loc))
+1 -1
ocaml-qemu/lib/dune
··· 1 1 (library 2 2 (name qemu) 3 3 (public_name qemu) 4 - (libraries eio json logs bytesrw vlog tty unix fmt)) 4 + (libraries eio json logs bytesrw vlog nox-tty unix fmt))
+2 -2
ocaml-qemu/qemu.opam
··· 19 19 "logs" {>= "0.7.0"} 20 20 "bytesrw" {>= "0.1.0"} 21 21 "vlog" {>= "0.1.0"} 22 - "tty" {>= "0.1.0"} 22 + "nox-tty" {>= "0.1.0"} 23 23 "cmdliner" {>= "1.2.0"} 24 24 "alcotest" {with-test} 25 25 "mdx" {with-test} 26 - "loc" 26 + "nox-loc" 27 27 "odoc" {with-doc} 28 28 ] 29 29 build: [
+1 -1
ocaml-qemu/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries qemu alcotest loc)) 3 + (libraries qemu alcotest nox-loc))
+1 -1
ocaml-reed-solomon/test/interop/reedsolo/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries reed_solomon csv alcotest) 3 + (libraries reed_solomon nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-rego/dune-project
··· 33 33 (alcotest :with-test) 34 34 (odoc :with-doc) 35 35 (mdx :with-test) 36 - loc)) 36 + nox-loc))
+1 -1
ocaml-rego/lib/dune
··· 1 1 (library 2 2 (name rego) 3 3 (public_name rego) 4 - (libraries fmt logs json astring re sedlex menhirLib loc) 4 + (libraries fmt logs json astring re sedlex menhirLib nox-loc) 5 5 (preprocess 6 6 (pps sedlex.ppx))) 7 7
+1 -1
ocaml-rego/rego.opam
··· 23 23 "alcotest" {with-test} 24 24 "odoc" {with-doc} 25 25 "mdx" {with-test} 26 - "loc" 26 + "nox-loc" 27 27 ] 28 28 build: [ 29 29 ["dune" "subst"] {dev}
+1 -1
ocaml-requests/bin/dune
··· 1 1 (executables 2 2 (public_names ocurl) 3 3 (names ocurl) 4 - (libraries requests eio_main cmdliner json vlog tty fmt)) 4 + (libraries requests eio_main cmdliner json vlog nox-tty fmt))
+1 -1
ocaml-requests/dune
··· 17 17 requests.h2 18 18 requests.oauth 19 19 requests.parsing 20 - crypto-rng.unix)) 20 + nox-crypto-rng.unix))
+10 -10
ocaml-requests/dune-project
··· 22 22 (ocaml (>= 5.1.0)) 23 23 eio 24 24 fmt 25 - tls 26 - tls-eio 27 - ca-certs 28 - crypto 29 - crypto-rng 30 - crypto-ec 31 - crypto-pk 25 + nox-tls 26 + nox-tls-eio 27 + nox-ca-certs 28 + nox-crypto 29 + nox-crypto-rng 30 + nox-crypto-ec 31 + nox-crypto-pk 32 32 eqaf 33 - http 33 + nox-http 34 34 uri 35 35 json 36 - cookie 37 - xdge 36 + nox-cookie 37 + nox-xdge 38 38 ptime 39 39 cmdliner 40 40 digestif
+5 -5
ocaml-requests/examples/dune
··· 1 1 (executable 2 2 (name localhost) 3 3 (modules localhost) 4 - (libraries requests conpool eio eio_main crypto-rng.unix vlog) 4 + (libraries requests conpool eio eio_main nox-crypto-rng.unix vlog) 5 5 (enabled_if 6 6 (= %{context_name} "default"))) 7 7 8 8 (executable 9 9 (name simple) 10 10 (modules simple) 11 - (libraries requests conpool eio eio_main crypto-rng.unix vlog) 11 + (libraries requests conpool eio eio_main nox-crypto-rng.unix vlog) 12 12 (enabled_if 13 13 (= %{context_name} "default"))) 14 14 15 15 (executable 16 16 (name one) 17 17 (modules one) 18 - (libraries requests eio eio_main crypto-rng.unix vlog) 18 + (libraries requests eio eio_main nox-crypto-rng.unix vlog) 19 19 (enabled_if 20 20 (= %{context_name} "default"))) 21 21 22 22 (executable 23 23 (name simple_head) 24 24 (modules simple_head) 25 - (libraries requests eio eio_main crypto-rng.unix vlog) 25 + (libraries requests eio eio_main nox-crypto-rng.unix vlog) 26 26 (enabled_if 27 27 (= %{context_name} "default"))) 28 28 29 29 (executable 30 30 (name session_example) 31 31 (modules session_example) 32 - (libraries requests eio eio_main crypto-rng.unix vlog) 32 + (libraries requests eio eio_main nox-crypto-rng.unix vlog) 33 33 (enabled_if 34 34 (= %{context_name} "default")))
+1 -1
ocaml-requests/fuzz/dune
··· 4 4 requests 5 5 requests_h1 6 6 requests_h2 7 - http 7 + nox-http 8 8 eio 9 9 eio_main 10 10 cstruct
+12 -12
ocaml-requests/lib/dune
··· 2 2 (name requests) 3 3 (public_name requests) 4 4 (libraries 5 - http 5 + nox-http 6 6 requests_parsing 7 7 requests_h1 8 8 requests_h2 ··· 11 11 eio.unix 12 12 json 13 13 base64 14 - cookie 15 - cookie.jar 16 - xdge 14 + nox-cookie 15 + nox-cookie.jar 16 + nox-xdge 17 17 logs 18 18 ptime 19 19 ptime.clock.os 20 20 cmdliner 21 - crypto 22 - crypto-rng 23 - crypto-rng.unix 24 - crypto-ec 25 - crypto-pk 21 + nox-crypto 22 + nox-crypto-rng 23 + nox-crypto-rng.unix 24 + nox-crypto-ec 25 + nox-crypto-pk 26 26 eqaf 27 - tls 28 - tls-eio 29 - ca-certs 27 + nox-tls 28 + nox-tls-eio 29 + nox-ca-certs 30 30 domain-name 31 31 cstruct 32 32 conpool
+8 -8
ocaml-requests/lib/features/dune
··· 2 2 (name requests_features) 3 3 (public_name requests.features) 4 4 (libraries 5 - http 5 + nox-http 6 6 requests_parsing 7 7 requests_h1 8 - crypto 9 - crypto-ec 10 - crypto-pk 11 - crypto-rng 12 - tls 13 - tls-eio 14 - ca-certs 8 + nox-crypto 9 + nox-crypto-ec 10 + nox-crypto-pk 11 + nox-crypto-rng 12 + nox-tls 13 + nox-tls-eio 14 + nox-ca-certs 15 15 base64 16 16 digestif 17 17 eqaf
+1 -1
ocaml-requests/lib/h1/dune
··· 2 2 (name requests_h1) 3 3 (public_name requests.h1) 4 4 (libraries 5 - http 5 + nox-http 6 6 requests_parsing 7 7 eio 8 8 decompress.de
+1 -1
ocaml-requests/lib/h2/dune
··· 2 2 (name requests_h2) 3 3 (public_name requests.h2) 4 4 (private_modules h2_hpack_tables h2_huffman_table) 5 - (libraries http requests_h1 eio cstruct tls ca-certs conpool logs fmt)) 5 + (libraries nox-http requests_h1 eio cstruct nox-tls nox-ca-certs conpool logs fmt))
+1 -1
ocaml-requests/lib/oauth/dune
··· 9 9 eqaf 10 10 json 11 11 logs 12 - crypto-rng 12 + nox-crypto-rng 13 13 ptime 14 14 ptime.clock.os 15 15 fmt)
+1 -1
ocaml-requests/lib/parsing/dune
··· 1 1 (library 2 2 (name requests_parsing) 3 3 (public_name requests.parsing) 4 - (libraries http ptime fmt)) 4 + (libraries nox-http ptime fmt))
+10 -10
ocaml-requests/requests.opam
··· 14 14 "ocaml" {>= "5.1.0"} 15 15 "eio" 16 16 "fmt" 17 - "tls" 18 - "tls-eio" 19 - "ca-certs" 20 - "crypto" 21 - "crypto-rng" 22 - "crypto-ec" 23 - "crypto-pk" 17 + "nox-tls" 18 + "nox-tls-eio" 19 + "nox-ca-certs" 20 + "nox-crypto" 21 + "nox-crypto-rng" 22 + "nox-crypto-ec" 23 + "nox-crypto-pk" 24 24 "eqaf" 25 - "http" 25 + "nox-http" 26 26 "uri" 27 27 "json" 28 - "cookie" 29 - "xdge" 28 + "nox-cookie" 29 + "nox-xdge" 30 30 "ptime" 31 31 "cmdliner" 32 32 "digestif"
+1 -1
ocaml-requests/test/dune
··· 3 3 (libraries 4 4 unix 5 5 requests 6 - http 6 + nox-http 7 7 alcotest 8 8 cstruct 9 9 eio
+3 -3
ocaml-requests/test/features/dune
··· 5 5 requests.features 6 6 alcotest 7 7 base64 8 - crypto-ec 9 - crypto-rng.unix 8 + nox-crypto-ec 9 + nox-crypto-rng.unix 10 10 digestif 11 11 eio 12 12 eio_main 13 13 ptime 14 14 ptime.clock.os 15 - tls 15 + nox-tls 16 16 vlog) 17 17 (enabled_if 18 18 (= %{context_name} "default")))
+2 -2
ocaml-requests/test/h2/interop/h2py/dune
··· 2 2 (name test) 3 3 (libraries 4 4 requests_h2 5 - http 5 + nox-http 6 6 eio 7 7 eio.unix 8 8 eio_main 9 - csv 9 + nox-csv 10 10 alcotest 11 11 logs 12 12 logs.fmt)
+2 -2
ocaml-requests/test/oauth/dune
··· 6 6 alcotest 7 7 astring 8 8 base64 9 - crypto-ec 10 - crypto-rng.unix 9 + nox-crypto-ec 10 + nox-crypto-rng.unix 11 11 digestif 12 12 eio 13 13 eio_main
+1 -1
ocaml-respond/dune-project
··· 18 18 (depends 19 19 (ocaml (>= 5.1)) 20 20 (dune (>= 3.0)) 21 - http 21 + nox-http 22 22 eio 23 23 logs 24 24 magic-mime
+1 -1
ocaml-respond/lib/dune
··· 1 1 (library 2 2 (name respond) 3 3 (public_name respond) 4 - (libraries eio logs magic-mime fmt http)) 4 + (libraries eio logs magic-mime fmt nox-http))
+1 -1
ocaml-respond/respond.opam
··· 12 12 depends: [ 13 13 "ocaml" {>= "5.1"} 14 14 "dune" {>= "3.21" & >= "3.0"} 15 - "http" 15 + "nox-http" 16 16 "eio" 17 17 "logs" 18 18 "magic-mime"
+1 -1
ocaml-rice/test/interop/libaec/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries rice csv alcotest) 3 + (libraries rice nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
ocaml-s3/dune-project
··· 29 29 (digestif (>= 1.0)) 30 30 (astring (>= 0.8)) 31 31 eio 32 - http 32 + nox-http 33 33 requests 34 34 retry 35 35 xml 36 36 (alcotest :with-test) 37 37 (alcobar :with-test) 38 38 (mdx :with-test) 39 - loc)) 39 + nox-loc))
+1 -1
ocaml-s3/lib/dune
··· 1 1 (library 2 2 (name s3) 3 3 (public_name s3) 4 - (libraries digestif fmt logs astring unix eio http requests retry xml)) 4 + (libraries digestif fmt logs astring unix eio nox-http requests retry xml))
+2 -2
ocaml-s3/s3.opam
··· 21 21 "digestif" {>= "1.0"} 22 22 "astring" {>= "0.8"} 23 23 "eio" 24 - "http" 24 + "nox-http" 25 25 "requests" 26 26 "retry" 27 27 "xml" 28 28 "alcotest" {with-test} 29 29 "alcobar" {with-test} 30 30 "mdx" {with-test} 31 - "loc" 31 + "nox-loc" 32 32 "odoc" {with-doc} 33 33 ] 34 34 build: [
+1 -1
ocaml-s3/test/interop/boto3/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries s3 csv alcotest astring unix) 3 + (libraries s3 nox-csv alcotest astring unix) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-sbom/dune-project
··· 29 29 (astring (>= 0.8)) 30 30 (alcotest :with-test) 31 31 (mdx :with-test) 32 - loc)) 32 + nox-loc)) 33 33
+1 -1
ocaml-sbom/sbom.opam
··· 20 20 "astring" {>= "0.8"} 21 21 "alcotest" {with-test} 22 22 "mdx" {with-test} 23 - "loc" 23 + "nox-loc" 24 24 "odoc" {with-doc} 25 25 ] 26 26 build: [
+1 -1
ocaml-sbom/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries sbom cyclonedx spdx alcotest loc)) 3 + (libraries sbom cyclonedx spdx alcotest nox-loc))
+3 -3
ocaml-scaleway/bin/dune
··· 14 14 logs.fmt 15 15 digestif 16 16 digestif.c 17 - tty 18 - tty-eio 17 + nox-tty 18 + nox-tty-eio 19 19 re 20 - memtrace 20 + nox-memtrace 21 21 unix))
+4 -4
ocaml-scaleway/dune-project
··· 22 22 Storage APIs will follow.") 23 23 (depends 24 24 (ocaml (>= 5.1)) 25 - yaml 25 + nox-yaml 26 26 json (bos (>= 0.2)) 27 27 (fmt (>= 0.9)) 28 28 (logs (>= 0.8)) ··· 33 33 cmdliner 34 34 digestif 35 35 eio_main 36 - memtrace 36 + nox-memtrace 37 37 re 38 38 s3 39 - tty 40 - tty-eio 39 + nox-tty 40 + nox-tty-eio 41 41 (alcotest :with-test) 42 42 (mdx :with-test) 43 43 (alcobar :with-test)))
+1 -1
ocaml-scaleway/lib/dune
··· 1 1 (library 2 2 (name scaleway) 3 3 (public_name scaleway) 4 - (libraries yaml yaml.json json bos fmt fpath logs astring requests eio)) 4 + (libraries nox-yaml nox-yaml.json json bos fmt fpath logs astring requests eio))
+4 -4
ocaml-scaleway/scaleway.opam
··· 14 14 depends: [ 15 15 "dune" {>= "3.21"} 16 16 "ocaml" {>= "5.1"} 17 - "yaml" 17 + "nox-yaml" 18 18 "json" 19 19 "bos" {>= "0.2"} 20 20 "fmt" {>= "0.9"} ··· 26 26 "cmdliner" 27 27 "digestif" 28 28 "eio_main" 29 - "memtrace" 29 + "nox-memtrace" 30 30 "re" 31 31 "s3" 32 - "tty" 33 - "tty-eio" 32 + "nox-tty" 33 + "nox-tty-eio" 34 34 "alcotest" {with-test} 35 35 "mdx" {with-test} 36 36 "alcobar" {with-test}
+1 -1
ocaml-scc/test/interop/dariol83/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries scc alcotest csv) 3 + (libraries scc alcotest nox-csv) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+5 -5
ocaml-scitt/dune-project
··· 22 22 (ocaml (>= 5.1)) 23 23 (dune (>= 3.21)) 24 24 (cose (>= 0.1.0)) 25 - (cbor (>= 0.1.0)) 25 + (nox-cbor (>= 0.1.0)) 26 26 (digestif (>= 1.2.0)) 27 27 (eqaf (>= 0.10)) 28 28 (ohex (>= 0.2)) 29 - (x509 (>= 1.0.0)) 29 + (nox-x509 (>= 1.0.0)) 30 30 (ptime (>= 1.0)) 31 31 (fmt (>= 0.9)) 32 32 (logs (>= 0.7)) 33 - (irmin (>= 0.1.0)) 33 + (nox-irmin (>= 0.1.0)) 34 34 (atp (>= 0.1.0)) 35 35 (alcotest :with-test) 36 36 (alcobar :with-test) ··· 38 38 eio 39 39 sqlite 40 40 (mdx :with-test) 41 - loc)) 41 + nox-loc)) 42 42 43 43 (package 44 44 (name scitt-atp) ··· 56 56 (atp-lexicon-scitt (>= 0.1.0)) 57 57 (digestif (>= 1.2.0)) 58 58 (ohex (>= 0.2)) 59 - (irmin (>= 0.1.0)) 59 + (nox-irmin (>= 0.1.0)) 60 60 (ptime (>= 1.0)) 61 61 (alcotest :with-test) 62 62 (mdx :with-test)
+1 -1
ocaml-scitt/fuzz/dune
··· 1 1 (library 2 2 (name fuzz_scitt) 3 3 (modules fuzz_scitt) 4 - (libraries scitt alcobar cbor cose)) 4 + (libraries scitt alcobar nox-cbor cose)) 5 5 6 6 (executable 7 7 (name fuzz)
+1 -1
ocaml-scitt/lib/atp/dune
··· 1 1 (library 2 2 (name scitt_atp) 3 3 (public_name scitt-atp) 4 - (libraries scitt atp atp-lexicon-scitt irmin digestif ohex ptime)) 4 + (libraries scitt atp atp-lexicon-scitt nox-irmin digestif ohex ptime))
+3 -3
ocaml-scitt/lib/dune
··· 4 4 (enabled_if %{arch_sixtyfour}) 5 5 (libraries 6 6 cose 7 - cbor 7 + nox-cbor 8 8 ohex 9 9 digestif 10 10 eqaf 11 - x509 11 + nox-x509 12 12 ptime 13 13 fmt 14 14 logs 15 15 eio 16 16 sqlite 17 - irmin 17 + nox-irmin 18 18 atp))
+1 -1
ocaml-scitt/scitt-atp.opam
··· 19 19 "atp-lexicon-scitt" {>= "0.1.0"} 20 20 "digestif" {>= "1.2.0"} 21 21 "ohex" {>= "0.2"} 22 - "irmin" {>= "0.1.0"} 22 + "nox-irmin" {>= "0.1.0"} 23 23 "ptime" {>= "1.0"} 24 24 "alcotest" {with-test} 25 25 "mdx" {with-test}
+4 -4
ocaml-scitt/scitt.opam
··· 16 16 "ocaml" {>= "5.1"} 17 17 "dune" {>= "3.21" & >= "3.21"} 18 18 "cose" {>= "0.1.0"} 19 - "cbor" {>= "0.1.0"} 19 + "nox-cbor" {>= "0.1.0"} 20 20 "digestif" {>= "1.2.0"} 21 21 "eqaf" {>= "0.10"} 22 22 "ohex" {>= "0.2"} 23 - "x509" {>= "1.0.0"} 23 + "nox-x509" {>= "1.0.0"} 24 24 "ptime" {>= "1.0"} 25 25 "fmt" {>= "0.9"} 26 26 "logs" {>= "0.7"} 27 - "irmin" {>= "0.1.0"} 27 + "nox-irmin" {>= "0.1.0"} 28 28 "atp" {>= "0.1.0"} 29 29 "alcotest" {with-test} 30 30 "alcobar" {with-test} ··· 32 32 "eio" 33 33 "sqlite" 34 34 "mdx" {with-test} 35 - "loc" 35 + "nox-loc" 36 36 ] 37 37 build: [ 38 38 ["dune" "subst"] {dev}
+5 -5
ocaml-scitt/test/atp/dune
··· 3 3 (libraries 4 4 scitt 5 5 scitt-atp 6 - irmin 6 + nox-irmin 7 7 alcotest 8 8 cose 9 - cbor 9 + nox-cbor 10 10 atp 11 - x509 12 - crypto-ec 13 - crypto-rng.unix 11 + nox-x509 12 + nox-crypto-ec 13 + nox-crypto-rng.unix 14 14 eio_main 15 15 eio.mock 16 16 ptime
+4 -4
ocaml-scitt/test/dune
··· 4 4 scitt 5 5 alcotest 6 6 cose 7 - cbor 8 - x509 9 - crypto-ec 10 - crypto-rng.unix 7 + nox-cbor 8 + nox-x509 9 + nox-crypto-ec 10 + nox-crypto-rng.unix 11 11 eio_main 12 12 eio.mock 13 13 ptime
+2 -2
ocaml-scitt/test/gen/dune
··· 1 1 (executable 2 2 (name gen_vector) 3 3 (modules gen_vector) 4 - (libraries scitt eio.mock x509 crypto-ec crypto-rng.unix ohex)) 4 + (libraries scitt eio.mock nox-x509 nox-crypto-ec nox-crypto-rng.unix ohex)) 5 5 6 6 (executable 7 7 (name interop_check) 8 8 (modules interop_check) 9 - (libraries scitt cose cbor x509 crypto-ec crypto-rng.unix ohex digestif)) 9 + (libraries scitt cose nox-cbor nox-x509 nox-crypto-ec nox-crypto-rng.unix ohex digestif))
+4 -4
ocaml-sdls/dune-project
··· 12 12 (tags (org:blacksun aerospace codec.ccsds crypto)) 13 13 (depends 14 14 (ocaml (>= 5.1)) 15 - (crypto (>= 0.1)) 15 + (nox-crypto (>= 0.1)) 16 16 (fmt (>= 0.9)) 17 17 (logs (>= 0.7)) 18 18 (digestif (>= 1.0)) ··· 32 32 (eio (>= 1.0)) 33 33 (eio_main :with-test) 34 34 (fpath (>= 0.7)) 35 - (crypto (>= 0.1)) 36 - (crypto-rng (>= 0.1)) 35 + (nox-crypto (>= 0.1)) 36 + (nox-crypto-rng (>= 0.1)) 37 37 (pbkdf2 (>= 0.1)) 38 - (hkdf (>= 0.1)) 38 + (nox-hkdf (>= 0.1)) 39 39 (fmt (>= 0.9)) 40 40 (logs (>= 0.7)) 41 41 (mdx :with-test)))
+1 -1
ocaml-sdls/eio/dune
··· 1 1 (library 2 2 (name sdls_eio) 3 3 (public_name sdls-eio) 4 - (libraries sdls eio eio.unix fpath crypto crypto-rng fmt logs pbkdf2 hkdf)) 4 + (libraries sdls eio eio.unix fpath nox-crypto nox-crypto-rng fmt logs pbkdf2 nox-hkdf))
+1 -1
ocaml-sdls/lib/dune
··· 1 1 (library 2 2 (name sdls) 3 3 (public_name sdls) 4 - (libraries wire fmt logs crypto digestif eqaf bitv)) 4 + (libraries wire fmt logs nox-crypto digestif eqaf bitv))
+3 -3
ocaml-sdls/sdls-eio.opam
··· 14 14 "eio" {>= "1.0"} 15 15 "eio_main" {with-test} 16 16 "fpath" {>= "0.7"} 17 - "crypto" {>= "0.1"} 18 - "crypto-rng" {>= "0.1"} 17 + "nox-crypto" {>= "0.1"} 18 + "nox-crypto-rng" {>= "0.1"} 19 19 "pbkdf2" {>= "0.1"} 20 - "hkdf" {>= "0.1"} 20 + "nox-hkdf" {>= "0.1"} 21 21 "fmt" {>= "0.9"} 22 22 "logs" {>= "0.7"} 23 23 "mdx" {with-test}
+1 -1
ocaml-sdls/sdls.opam
··· 10 10 depends: [ 11 11 "dune" {>= "3.21"} 12 12 "ocaml" {>= "5.1"} 13 - "crypto" {>= "0.1"} 13 + "nox-crypto" {>= "0.1"} 14 14 "fmt" {>= "0.9"} 15 15 "logs" {>= "0.7"} 16 16 "digestif" {>= "1.0"}
+1 -1
ocaml-sdls/test/interop/cryptolib/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries sdls tc fsr csv alcotest) 3 + (libraries sdls tc fsr nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-sdnv/test/interop/rfc6256/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries sdnv csv alcotest) 3 + (libraries sdnv nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-sexp/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries sexp sexp.codecs)) 7 + (libraries nox-sexp nox-sexp.codecs))
+3 -3
ocaml-sexp/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name sexp) 3 + (name nox-sexp) 4 4 5 5 (generate_opam_files true) 6 6 ··· 10 10 (source (tangled gazagnaire.org/ocaml-sexp)) 11 11 12 12 (package 13 - (name sexp) 13 + (name nox-sexp) 14 14 (synopsis "Declarative S-expression codecs") 15 15 (tags (org:blacksun codec.text)) 16 16 (description ··· 22 22 fmt 23 23 bytesrw 24 24 uutf 25 - loc 25 + nox-loc 26 26 (odoc :with-doc) 27 27 (mdx :with-test) 28 28 (alcotest (and (>= 1.7) :with-test))))
+2 -2
ocaml-sexp/lib/codecs/dune
··· 1 1 (library 2 2 (name sexp_codecs) 3 - (public_name sexp.codecs) 4 - (libraries sexp fmt)) 3 + (public_name nox-sexp.codecs) 4 + (libraries nox-sexp fmt))
+2 -2
ocaml-sexp/lib/dune
··· 1 1 (library 2 2 (name sexp) 3 - (public_name sexp) 3 + (public_name nox-sexp) 4 4 (libraries 5 5 fmt 6 6 bytesrw 7 - (re_export loc) 7 + (re_export nox-loc) 8 8 uutf))
+1 -1
ocaml-sexp/sexp.opam ocaml-sexp/nox-sexp.opam
··· 17 17 "fmt" 18 18 "bytesrw" 19 19 "uutf" 20 - "loc" 20 + "nox-loc" 21 21 "odoc" {with-doc} 22 22 "mdx" {with-test} 23 23 "alcotest" {>= "1.7" & with-test}
ocaml-sexp/sexp.opam.template ocaml-sexp/nox-sexp.opam.template
+1 -1
ocaml-sexp/test/codecs/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries sexp sexp.codecs alcotest)) 3 + (libraries nox-sexp nox-sexp.codecs alcotest))
+1 -1
ocaml-sexp/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries sexp alcotest fmt bytesrw)) 3 + (libraries nox-sexp alcotest fmt bytesrw))
+4 -4
ocaml-sigstore/dune-project
··· 26 26 (digestif (>= 1.2.0)) 27 27 (ohex (>= 0.2)) 28 28 (base64 (>= 3.0)) 29 - (x509 (>= 1.0.0)) 30 - (crypto-ec (>= 1.0.0)) 31 - (crypto-rng (>= 0.11.0)) 32 - (jwt (>= 0.1.0)) 29 + (nox-x509 (>= 1.0.0)) 30 + (nox-crypto-ec (>= 1.0.0)) 31 + (nox-crypto-rng (>= 0.11.0)) 32 + (nox-jwt (>= 0.1.0)) 33 33 (requests (>= 0.1.0)) 34 34 (eio (>= 1.0)) 35 35 (alcotest :with-test)
+4 -4
ocaml-sigstore/lib/dune
··· 11 11 digestif 12 12 ohex 13 13 base64 14 - x509 15 - crypto-ec 16 - crypto-rng 17 - jwt 14 + nox-x509 15 + nox-crypto-ec 16 + nox-crypto-rng 17 + nox-jwt 18 18 requests 19 19 eio))
+4 -4
ocaml-sigstore/sigstore.opam
··· 21 21 "digestif" {>= "1.2.0"} 22 22 "ohex" {>= "0.2"} 23 23 "base64" {>= "3.0"} 24 - "x509" {>= "1.0.0"} 25 - "crypto-ec" {>= "1.0.0"} 26 - "crypto-rng" {>= "0.11.0"} 27 - "jwt" {>= "0.1.0"} 24 + "nox-x509" {>= "1.0.0"} 25 + "nox-crypto-ec" {>= "1.0.0"} 26 + "nox-crypto-rng" {>= "0.11.0"} 27 + "nox-jwt" {>= "0.1.0"} 28 28 "requests" {>= "0.1.0"} 29 29 "eio" {>= "1.0"} 30 30 "alcotest" {with-test}
+3 -3
ocaml-sigstore/test/dune
··· 7 7 fmt 8 8 ptime 9 9 ohex 10 - x509 11 - crypto-ec 12 - crypto-rng.unix 10 + nox-x509 11 + nox-crypto-ec 12 + nox-crypto-rng.unix 13 13 digestif))
+6 -6
ocaml-slack/bin/dune
··· 1 1 (executable 2 2 (name main) 3 - (public_name slack) 4 - (package slack) 3 + (public_name nox-slack) 4 + (package nox-slack) 5 5 (libraries 6 - slack 6 + nox-slack 7 7 cmdliner 8 8 eio_main 9 9 fmt 10 10 logs 11 11 vlog 12 - tty 12 + nox-tty 13 13 monopam-info 14 - xdge 14 + nox-xdge 15 15 re 16 16 oauth 17 - crypto-rng.unix)) 17 + nox-crypto-rng.unix))
+1 -1
ocaml-slack/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries slack eio_main)) 7 + (libraries nox-slack eio_main))
+5 -5
ocaml-slack/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name slack) 4 + (name nox-slack) 5 5 6 6 (generate_opam_files true) 7 7 ··· 14 14 (source (tangled gazagnaire.org/ocaml-slack)) 15 15 16 16 (package 17 - (name slack) 17 + (name nox-slack) 18 18 (synopsis "OCaml client for the Slack Web API") 19 19 (tags (org:blacksun network)) 20 20 (description ··· 30 30 (uri (>= 4.0)) 31 31 (re (>= 1.10)) 32 32 (cmdliner (>= 1.2)) 33 - crypto-rng 33 + nox-crypto-rng 34 34 eio_main 35 35 monopam-info 36 36 oauth 37 - tty 37 + nox-tty 38 38 vlog 39 - xdge 39 + nox-xdge 40 40 (alcotest :with-test) 41 41 uucp 42 42 (mdx :with-test)
+1 -1
ocaml-slack/lib/dune
··· 1 1 (library 2 2 (name slack) 3 - (public_name slack) 3 + (public_name nox-slack) 4 4 (libraries eio fmt logs json requests uri re cmarkit uutf uucp))
+3 -3
ocaml-slack/slack.opam ocaml-slack/nox-slack.opam
··· 21 21 "uri" {>= "4.0"} 22 22 "re" {>= "1.10"} 23 23 "cmdliner" {>= "1.2"} 24 - "crypto-rng" 24 + "nox-crypto-rng" 25 25 "eio_main" 26 26 "monopam-info" 27 27 "oauth" 28 - "tty" 28 + "nox-tty" 29 29 "vlog" 30 - "xdge" 30 + "nox-xdge" 31 31 "alcotest" {with-test} 32 32 "uucp" 33 33 "mdx" {with-test}
ocaml-slack/slack.opam.template ocaml-slack/nox-slack.opam.template
+1 -1
ocaml-slack/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries slack alcotest json fmt)) 3 + (libraries nox-slack alcotest json fmt))
+2 -2
ocaml-sle/dune-project
··· 46 46 (eio (>= 1.0)) 47 47 (bytesrw-eio (>= 0.1)) 48 48 (cstruct (>= 6.0)) 49 - (crypto (>= 0.1)) 50 - (crypto-rng (>= 0.1)) 49 + (nox-crypto (>= 0.1)) 50 + (nox-crypto-rng (>= 0.1)) 51 51 (logs (>= 0.7)) 52 52 (alcotest :with-test) 53 53 (odoc :with-doc)
+1 -1
ocaml-sle/lib/eio/dune
··· 1 1 (library 2 2 (name sle_eio) 3 3 (public_name sle-eio) 4 - (libraries sle eio bytesrw-eio cstruct crypto crypto-rng logs)) 4 + (libraries sle eio bytesrw-eio cstruct nox-crypto nox-crypto-rng logs))
+2 -2
ocaml-sle/sle-eio.opam
··· 16 16 "eio" {>= "1.0"} 17 17 "bytesrw-eio" {>= "0.1"} 18 18 "cstruct" {>= "6.0"} 19 - "crypto" {>= "0.1"} 20 - "crypto-rng" {>= "0.1"} 19 + "nox-crypto" {>= "0.1"} 20 + "nox-crypto-rng" {>= "0.1"} 21 21 "logs" {>= "0.7"} 22 22 "alcotest" {with-test} 23 23 "odoc" {with-doc}
+1 -1
ocaml-sle/test/interop/dariol83/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries sle csv alcotest) 3 + (libraries sle nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-space-packet/test/interop/spacepackets/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries space-packet csv alcotest) 3 + (libraries space-packet nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+3 -3
ocaml-spake2/dune-project
··· 26 26 (zarith (>= 1.12)) 27 27 (digestif (>= 1.2.0)) 28 28 (fmt (>= 0.9.0)) 29 - (kdf (>= 0.1)) 29 + (nox-kdf (>= 0.1)) 30 30 (pbkdf2 (>= 0.1)) 31 - (crypto-rng (>= 1.0.0)) 32 - (crypto-ec (>= 1.0.0)) 31 + (nox-crypto-rng (>= 1.0.0)) 32 + (nox-crypto-ec (>= 1.0.0)) 33 33 (logs (>= 0.7.0)) 34 34 (alcotest :with-test) 35 35 (mdx :with-test)
+1 -1
ocaml-spake2/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries fmt spake2 alcobar crypto-rng.unix)) 3 + (libraries fmt spake2 alcobar nox-crypto-rng.unix)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
ocaml-spake2/lib/dune
··· 1 1 (library 2 2 (name spake2) 3 3 (public_name spake2) 4 - (libraries zarith digestif fmt kdf.hkdf pbkdf2 crypto-rng crypto-ec logs)) 4 + (libraries zarith digestif fmt nox-kdf.hkdf pbkdf2 nox-crypto-rng nox-crypto-ec logs))
+3 -3
ocaml-spake2/spake2.opam
··· 19 19 "zarith" {>= "1.12"} 20 20 "digestif" {>= "1.2.0"} 21 21 "fmt" {>= "0.9.0"} 22 - "kdf" {>= "0.1"} 22 + "nox-kdf" {>= "0.1"} 23 23 "pbkdf2" {>= "0.1"} 24 - "crypto-rng" {>= "1.0.0"} 25 - "crypto-ec" {>= "1.0.0"} 24 + "nox-crypto-rng" {>= "1.0.0"} 25 + "nox-crypto-ec" {>= "1.0.0"} 26 26 "logs" {>= "0.7.0"} 27 27 "alcotest" {with-test} 28 28 "mdx" {with-test}
+1 -1
ocaml-spake2/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries spake2 kdf.hkdf pbkdf2 alcotest crypto-rng.unix ohex)) 3 + (libraries spake2 nox-kdf.hkdf pbkdf2 alcotest nox-crypto-rng.unix ohex))
+1 -1
ocaml-sqlite/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
ocaml-sqlite/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
ocaml-sqlite/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
ocaml-sqlite/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))
+1 -1
ocaml-srp/dune-project
··· 22 22 (ocaml (>= 4.08)) 23 23 (zarith (>= 1.12)) 24 24 (digestif (>= 1.2.0)) 25 - (crypto-rng (>= 1.0.0)) 25 + (nox-crypto-rng (>= 1.0.0)) 26 26 (alcotest :with-test) 27 27 (mdx :with-test) 28 28 (alcobar :with-test)))
+1 -1
ocaml-srp/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries srp alcobar crypto-rng.unix)) 3 + (libraries srp alcobar nox-crypto-rng.unix)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
ocaml-srp/lib/dune
··· 1 1 (library 2 2 (name srp) 3 3 (public_name srp) 4 - (libraries zarith digestif crypto-rng)) 4 + (libraries zarith digestif nox-crypto-rng))
+1 -1
ocaml-srp/srp.opam
··· 15 15 "ocaml" {>= "4.08"} 16 16 "zarith" {>= "1.12"} 17 17 "digestif" {>= "1.2.0"} 18 - "crypto-rng" {>= "1.0.0"} 18 + "nox-crypto-rng" {>= "1.0.0"} 19 19 "alcotest" {with-test} 20 20 "mdx" {with-test} 21 21 "alcobar" {with-test}
+1 -1
ocaml-srp/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries srp alcotest crypto-rng.unix ohex)) 3 + (libraries srp alcotest nox-crypto-rng.unix ohex))
+3 -3
ocaml-streaming-aead/dune-project
··· 23 23 "Streaming AEAD provides authenticated encryption for data streams too large to process in a single operation. Each segment is independently encrypted and authenticated, with protection against reordering and truncation attacks. Compatible with Google Tink's streaming AEAD format.") 24 24 (depends 25 25 (ocaml (>= 5.1)) 26 - crypto 27 - crypto-rng 28 - kdf 26 + nox-crypto 27 + nox-crypto-rng 28 + nox-kdf 29 29 (fmt (>= 0.9)) 30 30 (mdx :with-test) 31 31 (alcotest :with-test)))
+1 -1
ocaml-streaming-aead/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries streaming-aead alcobar crypto-rng.unix)) 3 + (libraries streaming-aead alcobar nox-crypto-rng.unix)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
ocaml-streaming-aead/lib/dune
··· 1 1 (library 2 2 (name streaming_aead) 3 3 (public_name streaming-aead) 4 - (libraries crypto crypto-rng kdf.hkdf fmt)) 4 + (libraries nox-crypto nox-crypto-rng nox-kdf.hkdf fmt))
+3 -3
ocaml-streaming-aead/streaming-aead.opam
··· 12 12 depends: [ 13 13 "dune" {>= "3.21"} 14 14 "ocaml" {>= "5.1"} 15 - "crypto" 16 - "crypto-rng" 17 - "kdf" 15 + "nox-crypto" 16 + "nox-crypto-rng" 17 + "nox-kdf" 18 18 "fmt" {>= "0.9"} 19 19 "mdx" {with-test} 20 20 "alcotest" {with-test}
+1 -1
ocaml-streaming-aead/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries streaming-aead alcotest crypto-rng.unix)) 3 + (libraries streaming-aead alcotest nox-crypto-rng.unix))
+1 -1
ocaml-stripe/dune-project
··· 27 27 (digestif (>= 1.0)) 28 28 (alcotest :with-test) 29 29 (mdx :with-test) 30 - loc)) 30 + nox-loc))
+1 -1
ocaml-stripe/lib/dune
··· 1 1 (library 2 2 (name stripe) 3 3 (public_name stripe) 4 - (libraries requests json digestif fmt loc)) 4 + (libraries requests json digestif fmt nox-loc))
+1 -1
ocaml-stripe/stripe.opam
··· 18 18 "digestif" {>= "1.0"} 19 19 "alcotest" {with-test} 20 20 "mdx" {with-test} 21 - "loc" 21 + "nox-loc" 22 22 "odoc" {with-doc} 23 23 ] 24 24 build: [
+1 -1
ocaml-stripe/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries stripe alcotest digestif loc)) 3 + (libraries stripe alcotest digestif nox-loc))
+1 -1
ocaml-tar/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries tar tar-eio tar.gz eio_main eio eio.unix)) 7 + (libraries nox-tar nox-tar-eio nox-tar.gz eio_main eio eio.unix))
+4 -4
ocaml-tar/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name tar) 3 + (name nox-tar) 4 4 (cram enable) 5 5 (generate_opam_files true) 6 6 ··· 21 21 (documentation "https://mirage.github.io/ocaml-tar/") 22 22 23 23 (package 24 - (name tar) 24 + (name nox-tar) 25 25 (synopsis "Decode and encode tar format files in pure OCaml") 26 26 (description 27 27 "\| tar is a library to read and write tar files with an emphasis on ··· 41 41 ) 42 42 43 43 (package 44 - (name tar-eio) 44 + (name nox-tar-eio) 45 45 (synopsis "Decode and encode tar format files using Eio") 46 46 (description 47 47 "\| tar is a library to read and write tar files with an emphasis on ··· 51 51 (depends 52 52 (ocaml (>= 5.00.0)) 53 53 (eio (and (>= 1.1))) 54 - (tar (= :version)) 54 + (nox-tar (= :version)) 55 55 (mdx :with-test) 56 56 ) 57 57
+2 -2
ocaml-tar/eio/dune
··· 1 1 (library 2 2 (name tar_eio) 3 - (public_name tar-eio) 4 - (libraries tar eio)) 3 + (public_name nox-tar-eio) 4 + (libraries nox-tar eio))
+1 -1
ocaml-tar/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries tar alcobar)) 3 + (libraries nox-tar alcobar)) 4 4 5 5 (rule 6 6 (alias runtest)
+3 -3
ocaml-tar/lib/dune
··· 1 1 (library 2 2 (name tar) 3 3 (modules tar) 4 - (public_name tar) 4 + (public_name nox-tar) 5 5 (libraries fmt) 6 6 (wrapped false)) 7 7 8 8 (library 9 9 (name tar_gz) 10 10 (modules tar_gz) 11 - (public_name tar.gz) 11 + (public_name nox-tar.gz) 12 12 (wrapped false) 13 - (libraries tar decompress.gz decompress.de)) 13 + (libraries nox-tar decompress.gz decompress.de))
+1 -1
ocaml-tar/tar-eio.opam ocaml-tar/nox-tar-eio.opam
··· 29 29 "dune" {>= "3.21"} 30 30 "ocaml" {>= "5.00.0"} 31 31 "eio" {>= "1.1"} 32 - "tar" {= version} 32 + "nox-tar" {= version} 33 33 "mdx" {with-test} 34 34 "odoc" {with-doc} 35 35 ]
ocaml-tar/tar-eio.opam.template ocaml-tar/nox-tar-eio.opam.template
-1
ocaml-tar/tar-mirage.opam.template
··· 1 - x-maintenance-intent: [ "(latest)" ]
-1
ocaml-tar/tar-unix.opam.template
··· 1 - x-maintenance-intent: [ "(latest)" ]
ocaml-tar/tar.opam ocaml-tar/nox-tar.opam
ocaml-tar/tar.opam.template ocaml-tar/nox-tar.opam.template
+1 -1
ocaml-tar/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries tar tar_gz tar_eio alcotest)) 3 + (libraries nox-tar tar_gz tar_eio alcotest))
+1 -1
ocaml-tc/dune-project
··· 22 22 control command flags for Type-A/Type-B distinction in FARM processing.") 23 23 (depends 24 24 (ocaml (>= 4.14)) 25 - (crc (>= 0.1)) 25 + (nox-crc (>= 0.1)) 26 26 (fmt (>= 0.1)) 27 27 (wire (>= 0.1)) 28 28 (alcotest :with-test)
+1 -1
ocaml-tc/lib/dune
··· 1 1 (library 2 2 (name tc) 3 3 (public_name tc) 4 - (libraries crc fmt wire wire.stubs)) 4 + (libraries nox-crc fmt wire wire.stubs))
+1 -1
ocaml-tc/tc.opam
··· 12 12 depends: [ 13 13 "dune" {>= "3.21"} 14 14 "ocaml" {>= "4.14"} 15 - "crc" {>= "0.1"} 15 + "nox-crc" {>= "0.1"} 16 16 "fmt" {>= "0.1"} 17 17 "wire" {>= "0.1"} 18 18 "alcotest" {with-test}
+1 -1
ocaml-tc/test/interop/dariol83/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries tc alcotest csv) 3 + (libraries tc alcotest nox-csv) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-tcf/test/interop/spacepackets/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries tcf csv alcotest) 3 + (libraries tcf nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-tcpcl/test/interop/ion/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries tcpcl csv alcotest) 3 + (libraries tcpcl nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-tdm/test/interop/orekit/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries tdm alcotest csv) 3 + (libraries tdm alcotest nox-csv) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-tls/bench/dune
··· 1 1 (executable 2 2 (name speed) 3 - (libraries fmt.tty logs.fmt crypto-rng crypto-rng.unix tls ptime.clock.os)) 3 + (libraries fmt.tty logs.fmt nox-crypto-rng nox-crypto-rng.unix nox-tls ptime.clock.os))
+1 -1
ocaml-tls/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries tls tls-eio)) 7 + (libraries nox-tls nox-tls-eio))
+11 -11
ocaml-tls/dune-project
··· 1 1 (lang dune 3.21) 2 - (name tls) 2 + (name nox-tls) 3 3 (source (tangled gazagnaire.org/ocaml-tls)) 4 4 (using mdx 0.4) 5 5 (license BSD-2-Clause) ··· 13 13 (generate_opam_files true) 14 14 15 15 (package 16 - (name tls) 16 + (name nox-tls) 17 17 (synopsis "Transport Layer Security purely in OCaml") 18 18 (description 19 19 "Transport Layer Security (TLS) is the most widely deployed security protocol on the Internet. Provides communication privacy, tampering prevention, and authentication of endpoints. Uses asymmetric cryptography to exchange a symmetric key, with optional X.509 endpoint authentication and algorithm agility.") ··· 21 21 (depends 22 22 (ocaml (>= 4.13.0)) 23 23 (dune (>= 3.0)) 24 - (crypto (>= 1.1.0)) 25 - (crypto-ec (>= 1.0.0)) 26 - (crypto-pk (>= 1.0.0)) 27 - (crypto-rng (>= 1.2.0)) 28 - (x509 (>= 1.0.0)) 24 + (nox-crypto (>= 1.1.0)) 25 + (nox-crypto-ec (>= 1.0.0)) 26 + (nox-crypto-pk (>= 1.0.0)) 27 + (nox-crypto-rng (>= 1.2.0)) 28 + (nox-x509 (>= 1.0.0)) 29 29 (domain-name (>= 0.3.0)) 30 30 (fmt (>= 0.8.7)) 31 31 (ounit2 (and :with-test (>= 2.2.0))) 32 - (kdf (>= 1.0.0)) 32 + (nox-kdf (>= 1.0.0)) 33 33 logs 34 34 ipaddr 35 35 (ohex (>= 0.2.0)) ··· 41 41 (conflicts (result (< 1.5)))) 42 42 43 43 (package 44 - (name tls-eio) 44 + (name nox-tls-eio) 45 45 (synopsis "Transport Layer Security purely in OCaml - Eio") 46 46 (description 47 47 "Eio-based wrapper around the pure tls library. Provides non-blocking TLS communication over Eio flows.") ··· 49 49 (depends 50 50 (ocaml (>= 5.0.0)) 51 51 (dune (>= 3.0)) 52 - (tls (= :version)) 53 - (crypto-rng (>= 1.2.0)) 52 + (nox-tls (= :version)) 53 + (nox-crypto-rng (>= 1.2.0)) 54 54 (eio (>= 0.12)) 55 55 (eio_main (and (>= 0.12) :with-test)) 56 56 (mdx :with-test)
+2 -2
ocaml-tls/eio/dune
··· 1 1 (library 2 2 (name tls_eio) 3 - (public_name tls-eio) 3 + (public_name nox-tls-eio) 4 4 (wrapped false) 5 - (libraries tls eio ptime.clock.os)) 5 + (libraries nox-tls eio ptime.clock.os))
+5 -5
ocaml-tls/eio/tests/dune
··· 5 5 (copy_files ../../certificates/*.pem) 6 6 7 7 (mdx 8 - (package tls-eio) 8 + (package nox-tls-eio) 9 9 (deps 10 10 server.pem 11 11 server.key 12 12 server-ec.pem 13 13 server-ec.key 14 - (package tls-eio) 15 - (package crypto-rng) 14 + (package nox-tls-eio) 15 + (package nox-crypto-rng) 16 16 (package eio_main))) 17 17 18 18 (test 19 19 (name test) 20 - (package tls-eio) 21 - (libraries tls-eio alcotest)) 20 + (package nox-tls-eio) 21 + (libraries nox-tls-eio alcotest))
+1 -1
ocaml-tls/eio/tests/fuzz/dune
··· 11 11 12 12 (executable 13 13 (name fuzz) 14 - (libraries alcobar tls-eio eio.mock logs logs.fmt crypto-rng test_helpers)) 14 + (libraries alcobar nox-tls-eio eio.mock logs logs.fmt nox-crypto-rng test_helpers)) 15 15 16 16 (rule 17 17 (alias runtest)
+1 -1
ocaml-tls/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries tls alcobar)) 3 + (libraries nox-tls alcobar)) 4 4 5 5 (rule 6 6 (alias runtest)
+7 -7
ocaml-tls/lib/dune
··· 1 1 (library 2 2 (name tls) 3 - (public_name tls) 3 + (public_name nox-tls) 4 4 (libraries 5 5 logs 6 - kdf.hkdf 6 + nox-kdf.hkdf 7 7 ohex 8 8 digestif 9 - crypto 10 - crypto-rng 11 - crypto-pk 12 - x509 9 + nox-crypto 10 + nox-crypto-rng 11 + nox-crypto-pk 12 + nox-x509 13 13 domain-name 14 14 fmt 15 - crypto-ec 15 + nox-crypto-ec 16 16 ipaddr))
+8 -8
ocaml-tls/test/dune
··· 1 1 (test 2 2 (name test) 3 - (package tls) 3 + (package nox-tls) 4 4 (libraries 5 - tls 5 + nox-tls 6 6 test_helpers 7 - crypto-rng.unix 7 + nox-crypto-rng.unix 8 8 alcotest 9 9 ohex 10 10 digestif 11 - kdf.hkdf 12 - crypto 13 - crypto-ec 14 - crypto-pk 15 - x509 11 + nox-kdf.hkdf 12 + nox-crypto 13 + nox-crypto-ec 14 + nox-crypto-pk 15 + nox-x509 16 16 logs.fmt 17 17 fmt.tty))
+3 -3
ocaml-tls/test/eio/dune
··· 1 1 (test 2 2 (name test) 3 - (package tls-eio) 3 + (package nox-tls-eio) 4 4 (libraries 5 - tls-eio 5 + nox-tls-eio 6 6 alcotest 7 7 eio.mock 8 - crypto-rng.unix 8 + nox-crypto-rng.unix 9 9 ptime.clock.os 10 10 test_helpers))
+1 -1
ocaml-tls/test/helpers/dune
··· 1 1 (library 2 2 (name test_helpers) 3 3 (wrapped false) 4 - (libraries tls alcotest crypto-rng crypto-rng.unix eio ohex domain-name)) 4 + (libraries nox-tls alcotest nox-crypto-rng nox-crypto-rng.unix eio ohex domain-name))
+2 -2
ocaml-tls/tls-eio.opam ocaml-tls/nox-tls-eio.opam
··· 16 16 depends: [ 17 17 "ocaml" {>= "5.0.0"} 18 18 "dune" {>= "3.21" & >= "3.0"} 19 - "tls" {= version} 20 - "crypto-rng" {>= "1.2.0"} 19 + "nox-tls" {= version} 20 + "nox-crypto-rng" {>= "1.2.0"} 21 21 "eio" {>= "0.12"} 22 22 "eio_main" {>= "0.12" & with-test} 23 23 "mdx" {with-test}
+6 -6
ocaml-tls/tls.opam ocaml-tls/nox-tls.opam
··· 16 16 depends: [ 17 17 "ocaml" {>= "4.13.0"} 18 18 "dune" {>= "3.21" & >= "3.0"} 19 - "crypto" {>= "1.1.0"} 20 - "crypto-ec" {>= "1.0.0"} 21 - "crypto-pk" {>= "1.0.0"} 22 - "crypto-rng" {>= "1.2.0"} 23 - "x509" {>= "1.0.0"} 19 + "nox-crypto" {>= "1.1.0"} 20 + "nox-crypto-ec" {>= "1.0.0"} 21 + "nox-crypto-pk" {>= "1.0.0"} 22 + "nox-crypto-rng" {>= "1.2.0"} 23 + "nox-x509" {>= "1.0.0"} 24 24 "domain-name" {>= "0.3.0"} 25 25 "fmt" {>= "0.8.7"} 26 26 "ounit2" {with-test & >= "2.2.0"} 27 - "kdf" {>= "1.0.0"} 27 + "nox-kdf" {>= "1.0.0"} 28 28 "logs" 29 29 "ipaddr" 30 30 "ohex" {>= "0.2.0"}
ocaml-tls/tls.opam.template ocaml-tls/nox-tls.opam.template
+1 -1
ocaml-tm/dune-project
··· 23 23 (depends 24 24 (ocaml (>= 4.14)) 25 25 (clcw (>= 0.1)) 26 - (crc (>= 0.1)) 26 + (nox-crc (>= 0.1)) 27 27 (fmt (>= 0.1)) 28 28 (wire (>= 0.1)) 29 29 (alcotest :with-test)
+1 -1
ocaml-tm/lib/dune
··· 1 1 (library 2 2 (name tm) 3 3 (public_name tm) 4 - (libraries clcw crc fmt wire wire.stubs)) 4 + (libraries clcw nox-crc fmt wire wire.stubs))
+1 -1
ocaml-tm/test/interop/dariol83/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries tm csv alcotest) 3 + (libraries tm nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-tm/tm.opam
··· 13 13 "dune" {>= "3.21"} 14 14 "ocaml" {>= "4.14"} 15 15 "clcw" {>= "0.1"} 16 - "crc" {>= "0.1"} 16 + "nox-crc" {>= "0.1"} 17 17 "fmt" {>= "0.1"} 18 18 "wire" {>= "0.1"} 19 19 "alcotest" {with-test}
+3 -3
ocaml-toml/bin/dune
··· 1 1 (executable 2 2 (name toml_test_decoder) 3 - (libraries toml unix)) 3 + (libraries nox-toml unix)) 4 4 5 5 (executable 6 6 (name toml_test_encoder) 7 - (libraries toml unix)) 7 + (libraries nox-toml unix)) 8 8 9 9 (executable 10 10 (name run_tests) 11 - (libraries fmt toml unix)) 11 + (libraries fmt nox-toml unix))
+1 -1
ocaml-toml/doc/dune
··· 1 1 (documentation 2 - (package toml) 2 + (package nox-toml) 3 3 (mld_files index cookbook))
+1 -1
ocaml-toml/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries toml toml.eio toml.unix)) 7 + (libraries nox-toml nox-toml.eio nox-toml.unix))
+3 -3
ocaml-toml/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name toml) 3 + (name nox-toml) 4 4 5 5 (generate_opam_files true) 6 6 ··· 10 10 (source (tangled anil.recoil.org/ocaml-tomlt)) 11 11 12 12 (package 13 - (name toml) 13 + (name nox-toml) 14 14 (synopsis "TOML 1.1 codec library for OCaml") 15 15 (tags (org:blacksun codec.text)) 16 16 (description ··· 27 27 (ptime (>= 1.0.0)) 28 28 (bytesrw (>= 0.1.0)) 29 29 (uutf (>= 1.0.0)) 30 - (loc (>= 0.1)) 30 + (nox-loc (>= 0.1)) 31 31 (eio (>= 1.0)) 32 32 (json (>= 0.1)) 33 33 (mdx :with-test)
+1 -1
ocaml-toml/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries toml alcobar)) 3 + (libraries nox-toml alcobar)) 4 4 5 5 (rule 6 6 (alias runtest)
+2 -2
ocaml-toml/lib/dune
··· 1 1 (library 2 2 (name toml) 3 - (public_name toml) 4 - (libraries fmt ptime bytesrw uutf loc)) 3 + (public_name nox-toml) 4 + (libraries fmt ptime bytesrw uutf nox-loc))
+2 -2
ocaml-toml/lib/eio/dune
··· 1 1 (library 2 2 (name toml_eio) 3 - (public_name toml.eio) 4 - (libraries toml eio bytesrw ptime.clock.os)) 3 + (public_name nox-toml.eio) 4 + (libraries nox-toml eio bytesrw ptime.clock.os))
+2 -2
ocaml-toml/lib/unix/dune
··· 1 1 (library 2 2 (name toml_unix) 3 - (public_name toml.unix) 3 + (public_name nox-toml.unix) 4 4 (optional) 5 - (libraries toml bytesrw ptime.clock.os)) 5 + (libraries nox-toml bytesrw ptime.clock.os))
+3 -3
ocaml-toml/test/dune
··· 1 1 (test 2 2 (name test) 3 3 (modules test test_value test_codec test_cursor test_error test_toml) 4 - (libraries toml alcotest unix) 4 + (libraries nox-toml alcotest unix) 5 5 (enabled_if 6 6 (= %{context_name} "default"))) 7 7 8 8 (executable 9 9 (name test_debug) 10 10 (modules test_debug) 11 - (libraries toml alcotest unix) 11 + (libraries nox-toml alcotest unix) 12 12 (enabled_if 13 13 (= %{context_name} "default"))) 14 14 15 15 (executable 16 16 (name cookbook) 17 17 (modules cookbook) 18 - (libraries toml unix) 18 + (libraries nox-toml unix) 19 19 (enabled_if 20 20 (= %{context_name} "default")))
+1 -1
ocaml-toml/test/lib_bytesrw/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries toml alcotest) 3 + (libraries nox-toml alcotest) 4 4 (enabled_if 5 5 (= %{context_name} "default")))
+1 -1
ocaml-toml/test/lib_eio/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries toml.eio alcotest) 3 + (libraries nox-toml.eio alcotest) 4 4 (enabled_if 5 5 (= %{context_name} "default")))
+1 -1
ocaml-toml/test/lib_unix/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries toml.unix alcotest) 3 + (libraries nox-toml.unix alcotest) 4 4 (enabled_if 5 5 (= %{context_name} "default")))
+1 -1
ocaml-toml/test_json/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries toml json alcotest)) 3 + (libraries nox-toml json alcotest))
+1 -1
ocaml-toml/toml.opam ocaml-toml/nox-toml.opam
··· 25 25 "ptime" {>= "1.0.0"} 26 26 "bytesrw" {>= "0.1.0"} 27 27 "uutf" {>= "1.0.0"} 28 - "loc" {>= "0.1"} 28 + "nox-loc" {>= "0.1"} 29 29 "eio" {>= "1.0"} 30 30 "json" {>= "0.1"} 31 31 "mdx" {with-test}
ocaml-toml/toml.opam.template ocaml-toml/nox-toml.opam.template
+1 -1
ocaml-tty/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries tty tty-eio fmt)) 7 + (libraries nox-tty nox-tty-eio fmt))
+4 -4
ocaml-tty/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name tty) 4 + (name nox-tty) 5 5 6 6 (generate_opam_files true) 7 7 ··· 12 12 (source (tangled gazagnaire.org/ocaml-tty)) 13 13 14 14 (package 15 - (name tty) 15 + (name nox-tty) 16 16 (synopsis "Terminal styling and layout widgets") 17 17 (tags (org:blacksun cli format)) 18 18 (description ··· 30 30 (alcobar :with-test))) 31 31 32 32 (package 33 - (name tty-eio) 33 + (name nox-tty-eio) 34 34 (synopsis "Eio bindings for tty progress bars") 35 35 (tags (org:blacksun cli format eio)) 36 36 (description ··· 38 38 so the core tty library stays scheduler-agnostic.") 39 39 (depends 40 40 (ocaml (>= 5.1)) 41 - (tty (= :version)) 41 + (nox-tty (= :version)) 42 42 (eio (>= 1.0)) 43 43 (mdx :with-test) 44 44 logs
+1 -1
ocaml-tty/fuzz/dune
··· 1 1 (library 2 2 (name fuzz_tty) 3 3 (modules fuzz_tty) 4 - (libraries tty alcobar)) 4 + (libraries nox-tty alcobar)) 5 5 6 6 (executable 7 7 (name fuzz)
+1 -1
ocaml-tty/lib/dune
··· 1 1 (library 2 2 (name tty) 3 - (public_name tty) 3 + (public_name nox-tty) 4 4 (libraries fmt logs unix uucp uutf) 5 5 (foreign_stubs 6 6 (language c)
+2 -2
ocaml-tty/lib/eio/dune
··· 1 1 (library 2 2 (name tty_eio) 3 - (public_name tty-eio) 4 - (libraries tty eio)) 3 + (public_name nox-tty-eio) 4 + (libraries nox-tty eio))
+1 -1
ocaml-tty/test/cram/helpers/dune
··· 1 1 (executable 2 2 (name dump_progress) 3 - (libraries tty unix re)) 3 + (libraries nox-tty unix re))
+3 -3
ocaml-tty/test/dune
··· 11 11 test_table 12 12 test_tree 13 13 test_width) 14 - (libraries tty alcotest re fmt)) 14 + (libraries nox-tty alcotest re fmt)) 15 15 16 16 (executable 17 17 (name debug_progress) 18 18 (modules debug_progress) 19 - (libraries tty unix)) 19 + (libraries nox-tty unix)) 20 20 21 21 (executable 22 22 (name check_width) 23 23 (modules check_width) 24 - (libraries tty unix)) 24 + (libraries nox-tty unix)) 25 25 26 26 (executable 27 27 (name minimal_progress)
+1 -1
ocaml-tty/tty-eio.opam ocaml-tty/nox-tty-eio.opam
··· 13 13 depends: [ 14 14 "dune" {>= "3.21"} 15 15 "ocaml" {>= "5.1"} 16 - "tty" {= version} 16 + "nox-tty" {= version} 17 17 "eio" {>= "1.0"} 18 18 "mdx" {with-test} 19 19 "logs"
ocaml-tty/tty.opam ocaml-tty/nox-tty.opam
ocaml-tty/tty.opam.template ocaml-tty/nox-tty.opam.template
+1 -1
ocaml-turbo/bench/dune
··· 2 2 (name bench_turbo) 3 3 (ocamlopt_flags 4 4 (:standard -O2)) 5 - (libraries turbo unix memtrace)) 5 + (libraries turbo unix nox-memtrace))
+1 -1
ocaml-turbo/test/interop/aff3ct/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries turbo csv alcotest) 3 + (libraries turbo nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-uslp/dune-project
··· 22 22 (depends 23 23 (ocaml (>= 4.14)) 24 24 (clcw (>= 0.1)) 25 - (crc (>= 0.1)) 25 + (nox-crc (>= 0.1)) 26 26 (fmt (>= 0.1)) 27 27 (wire (>= 0.1)) 28 28 (alcotest :with-test)
+1 -1
ocaml-uslp/lib/dune
··· 1 1 (library 2 2 (name uslp) 3 3 (public_name uslp) 4 - (libraries clcw crc fmt wire wire.stubs)) 4 + (libraries clcw nox-crc fmt wire wire.stubs))
+1 -1
ocaml-uslp/test/interop/spacepackets/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries uslp csv alcotest) 3 + (libraries uslp nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-uslp/uslp.opam
··· 13 13 "dune" {>= "3.21"} 14 14 "ocaml" {>= "4.14"} 15 15 "clcw" {>= "0.1"} 16 - "crc" {>= "0.1"} 16 + "nox-crc" {>= "0.1"} 17 17 "fmt" {>= "0.1"} 18 18 "wire" {>= "0.1"} 19 19 "alcotest" {with-test}
+1 -1
ocaml-viterbi/test/interop/commpy/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries viterbi csv alcotest) 3 + (libraries viterbi nox-csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+1 -1
ocaml-vlog/dune-project
··· 29 29 (ptime (>= 1.0)) 30 30 json-logs 31 31 (mdx :with-test) 32 - tty)) 32 + nox-tty))
+1 -1
ocaml-vlog/lib/dune
··· 11 11 ptime 12 12 ptime.clock.os 13 13 json-logs 14 - tty)) 14 + nox-tty))
+1 -1
ocaml-vlog/vlog.opam
··· 18 18 "ptime" {>= "1.0"} 19 19 "json-logs" 20 20 "mdx" {with-test} 21 - "tty" 21 + "nox-tty" 22 22 "odoc" {with-doc} 23 23 ] 24 24 build: [
+1 -1
ocaml-websocket/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries websocket fmt)) 7 + (libraries nox-websocket fmt))
+2 -2
ocaml-websocket/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name websocket) 3 + (name nox-websocket) 4 4 5 5 (generate_opam_files true) 6 6 ··· 11 11 (source (tangled gazagnaire.org/ocaml-websocket)) 12 12 13 13 (package 14 - (name websocket) 14 + (name nox-websocket) 15 15 (synopsis "WebSocket frame codec (RFC 6455)") 16 16 (tags (org:blacksun network http)) 17 17 (description
+1 -1
ocaml-websocket/fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries websocket alcobar)) 3 + (libraries nox-websocket alcobar)) 4 4 5 5 (rule 6 6 (alias runtest)
+1 -1
ocaml-websocket/lib/dune
··· 1 1 (library 2 2 (name websocket) 3 - (public_name websocket) 3 + (public_name nox-websocket) 4 4 (libraries fmt))
+1 -1
ocaml-websocket/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries websocket alcotest)) 3 + (libraries nox-websocket alcotest))
ocaml-websocket/websocket.opam ocaml-websocket/nox-websocket.opam
ocaml-websocket/websocket.opam.template ocaml-websocket/nox-websocket.opam.template
+1 -1
ocaml-x509/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries x509 cstruct)) 7 + (libraries nox-x509 cstruct))
+7 -7
ocaml-x509/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name x509) 3 + (name nox-x509) 4 4 (source (tangled gazagnaire.org/ocaml-x509)) 5 5 (license BSD-2-Clause) 6 6 (authors ··· 11 11 (generate_opam_files true) 12 12 13 13 (package 14 - (name x509) 14 + (name nox-x509) 15 15 (synopsis "Public Key Infrastructure (RFC 5280, PKCS) purely in OCaml") 16 16 (description 17 17 "X.509 is a public key infrastructure used mostly on the Internet. Certificates include public keys and identifiers signed by an authority. This library implements most parts of RFC5280 and RFC6125, plus PKCS 1, 5, 7, 8, 9, 10, and 12 encoding/decoding in ASN.1 DER and PEM format.") ··· 22 22 (asn1-combinators (>= 0.3.1)) 23 23 ptime 24 24 (base64 (>= 3.3.0)) 25 - (crypto (>= 1.0.0)) 26 - crypto-pk 27 - (crypto-ec (>= 0.10.7)) 28 - (crypto-rng (>= 1.2.0)) 25 + (nox-crypto (>= 1.0.0)) 26 + nox-crypto-pk 27 + (nox-crypto-ec (>= 0.10.7)) 28 + (nox-crypto-rng (>= 1.2.0)) 29 29 (fmt (>= 0.8.7)) 30 30 (alcotest :with-test) 31 31 (gmap (>= 0.3.0)) 32 32 (domain-name (>= 0.3.0)) 33 33 logs 34 - (kdf (>= 1.0.0)) 34 + (nox-kdf (>= 1.0.0)) 35 35 (ohex (>= 0.2.0)) 36 36 (mdx :with-test) 37 37 (ipaddr (>= 5.2.0)))
+6 -6
ocaml-x509/lib/dune
··· 1 1 (library 2 2 (name x509) 3 - (public_name x509) 3 + (public_name nox-x509) 4 4 (private_modules 5 5 asn_grammars 6 6 registry ··· 24 24 asn1-combinators 25 25 fmt 26 26 ptime 27 - crypto 28 - crypto-pk 27 + nox-crypto 28 + nox-crypto-pk 29 29 gmap 30 30 domain-name 31 31 base64 32 32 logs 33 - crypto-ec 34 - kdf.pbkdf 35 - crypto-rng 33 + nox-crypto-ec 34 + nox-kdf.pbkdf 35 + nox-crypto-rng 36 36 ipaddr 37 37 ohex))
+1 -1
ocaml-x509/tests/custom_pp/dune
··· 1 1 (executable 2 2 (name custom_pp) 3 - (libraries x509 asn1-combinators fmt)) 3 + (libraries nox-x509 asn1-combinators fmt)) 4 4 5 5 (rule 6 6 (deps
+1 -1
ocaml-x509/tests/dune
··· 7 7 (source_tree csr) 8 8 (source_tree pkcs12) 9 9 (source_tree ocsp)) 10 - (libraries x509 alcotest ptime.clock.os crypto-pk crypto-ec crypto-rng.unix)) 10 + (libraries nox-x509 alcotest ptime.clock.os nox-crypto-pk nox-crypto-ec nox-crypto-rng.unix))
+5 -5
ocaml-x509/x509.opam ocaml-x509/nox-x509.opam
··· 17 17 "asn1-combinators" {>= "0.3.1"} 18 18 "ptime" 19 19 "base64" {>= "3.3.0"} 20 - "crypto" {>= "1.0.0"} 21 - "crypto-pk" 22 - "crypto-ec" {>= "0.10.7"} 23 - "crypto-rng" {>= "1.2.0"} 20 + "nox-crypto" {>= "1.0.0"} 21 + "nox-crypto-pk" 22 + "nox-crypto-ec" {>= "0.10.7"} 23 + "nox-crypto-rng" {>= "1.2.0"} 24 24 "fmt" {>= "0.8.7"} 25 25 "alcotest" {with-test} 26 26 "gmap" {>= "0.3.0"} 27 27 "domain-name" {>= "0.3.0"} 28 28 "logs" 29 - "kdf" {>= "1.0.0"} 29 + "nox-kdf" {>= "1.0.0"} 30 30 "ohex" {>= "0.2.0"} 31 31 "mdx" {with-test} 32 32 "ipaddr" {>= "5.2.0"}
ocaml-x509/x509.opam.template ocaml-x509/nox-x509.opam.template
+1 -1
ocaml-xml/bench/dune
··· 1 1 (executable 2 2 (name bench_xml) 3 - (libraries xml memtrace fmt)) 3 + (libraries xml nox-memtrace fmt))
+1 -1
ocaml-xml/dune-project
··· 23 23 (bytesrw (>= 0.1.0)) 24 24 (fmt (>= 0.9.0)) 25 25 (uutf (>= 1.0.0)) 26 - (loc (>= 0.1)) 26 + (nox-loc (>= 0.1)) 27 27 (alcotest :with-test) 28 28 (mdx :with-test) 29 29 (alcobar :with-test)))
+1 -1
ocaml-xml/lib/dune
··· 5 5 (libraries 6 6 bytesrw 7 7 fmt 8 - (re_export loc) 8 + (re_export nox-loc) 9 9 uutf))
+1 -1
ocaml-xml/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries xml bytesrw alcotest fmt loc)) 3 + (libraries xml bytesrw alcotest fmt nox-loc))
+1 -1
ocaml-xml/xml.opam
··· 18 18 "bytesrw" {>= "0.1.0"} 19 19 "fmt" {>= "0.9.0"} 20 20 "uutf" {>= "1.0.0"} 21 - "loc" {>= "0.1"} 21 + "nox-loc" {>= "0.1"} 22 22 "alcotest" {with-test} 23 23 "mdx" {with-test} 24 24 "alcobar" {with-test}
+1 -1
ocaml-xtce/dune-project
··· 30 30 xml 31 31 (alcotest :with-test) 32 32 (mdx :with-test) 33 - loc)) 33 + nox-loc))
+1 -1
ocaml-xtce/xtce.opam
··· 19 19 "xml" 20 20 "alcotest" {with-test} 21 21 "mdx" {with-test} 22 - "loc" 22 + "nox-loc" 23 23 "odoc" {with-doc} 24 24 ] 25 25 build: [
+2 -2
ocaml-yaml/bench/dune
··· 1 1 (executable 2 2 (name bench_yaml) 3 - (libraries yaml fmt unix)) 3 + (libraries nox-yaml fmt unix)) 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries yaml)) 7 + (libraries nox-yaml))
+1 -1
ocaml-yaml/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries yaml yaml.bytesrw yaml.json)) 7 + (libraries nox-yaml nox-yaml.bytesrw nox-yaml.json))
+3 -3
ocaml-yaml/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 - (name yaml) 3 + (name nox-yaml) 4 4 5 5 (generate_opam_files true) 6 6 ··· 11 11 (source (tangled anil.recoil.org/ocaml-yamlt)) 12 12 13 13 (package 14 - (name yaml) 14 + (name nox-yaml) 15 15 (synopsis "YAML 1.2 codec library for OCaml") 16 16 (tags (org:blacksun codec.text)) 17 17 (description ··· 26 26 (fmt (>= 0.9.0)) 27 27 (bytesrw (>= 0.1.0)) 28 28 (json (>= 0.1)) 29 - (loc (>= 0.1)) 29 + (nox-loc (>= 0.1)) 30 30 (mdx :with-test) 31 31 (alcotest :with-test))) 32 32
+2 -2
ocaml-yaml/lib/bytesrw/dune
··· 1 1 (library 2 2 (name yaml_bytesrw) 3 - (public_name yaml.bytesrw) 4 - (libraries yaml bytesrw fmt)) 3 + (public_name nox-yaml.bytesrw) 4 + (libraries nox-yaml bytesrw fmt))
+2 -2
ocaml-yaml/lib/dune
··· 1 1 (library 2 2 (name yaml) 3 - (public_name yaml) 4 - (libraries fmt bytesrw loc)) 3 + (public_name nox-yaml) 4 + (libraries fmt bytesrw nox-loc))
+2 -2
ocaml-yaml/lib/json/dune
··· 1 1 (library 2 2 (name yaml_json) 3 - (public_name yaml.json) 4 - (libraries yaml json)) 3 + (public_name nox-yaml.json) 4 + (libraries nox-yaml json))
+1 -1
ocaml-yaml/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries yaml alcotest)) 3 + (libraries nox-yaml alcotest))
+1 -1
ocaml-yaml/yaml.opam ocaml-yaml/nox-yaml.opam
··· 23 23 "fmt" {>= "0.9.0"} 24 24 "bytesrw" {>= "0.1.0"} 25 25 "json" {>= "0.1"} 26 - "loc" {>= "0.1"} 26 + "nox-loc" {>= "0.1"} 27 27 "mdx" {with-test} 28 28 "alcotest" {with-test} 29 29 "odoc" {with-doc}
ocaml-yaml/yaml.opam.template ocaml-yaml/nox-yaml.opam.template
+1 -1
prune/bin/dune
··· 1 1 (executable 2 2 (public_name prune) 3 3 (name main) 4 - (libraries prune cmdliner vlog monopam-info memtrace)) 4 + (libraries prune cmdliner vlog monopam-info nox-memtrace))
+2 -2
prune/dune-project
··· 28 28 (logs (>= 0.8.0)) 29 29 (fmt (>= 0.8)) 30 30 (re (>= 1.9)) 31 - tty 31 + nox-tty 32 32 vlog 33 - memtrace 33 + nox-memtrace 34 34 monopam-info 35 35 (mdx :with-test) 36 36 (alcotest :with-test)))
+1 -1
prune/lib/dune
··· 11 11 compiler-libs.common 12 12 astring 13 13 unix 14 - tty)) 14 + nox-tty))
+2 -2
prune/prune.opam
··· 22 22 "logs" {>= "0.8.0"} 23 23 "fmt" {>= "0.8"} 24 24 "re" {>= "1.9"} 25 - "tty" 25 + "nox-tty" 26 26 "vlog" 27 - "memtrace" 27 + "nox-memtrace" 28 28 "monopam-info" 29 29 "mdx" {with-test} 30 30 "alcotest" {with-test}
+1 -1
uniboot/bin/dune
··· 1 1 (executable 2 2 (name main) 3 3 (public_name uniboot) 4 - (libraries uniboot cmdliner vlog fmt monopam-info memtrace)) 4 + (libraries uniboot cmdliner vlog fmt monopam-info nox-memtrace))
+3 -3
uniboot/dune-project
··· 26 26 (depends 27 27 (ocaml (>= 5.1)) 28 28 (bytesrw (>= 0.1)) 29 - (gpt (>= 0.1)) 29 + (nox-gpt (>= 0.1)) 30 30 (mbr (>= 0.1)) 31 31 (squashfs (>= 0.1)) 32 32 (initramfs (>= 0.1)) 33 33 oci 34 34 (eio (>= 1.0)) 35 - xdge 35 + nox-xdge 36 36 (cmdliner (>= 1.2)) 37 37 (fmt (>= 0.9)) 38 38 (logs (>= 0.7)) 39 39 (vlog (>= 0.1)) 40 40 (uuidm (>= 0.9.9)) 41 - memtrace 41 + nox-memtrace 42 42 monopam-info 43 43 (mdx :with-test) 44 44 (alcotest :with-test)))
+2 -2
uniboot/lib/dune
··· 3 3 (public_name uniboot) 4 4 (libraries 5 5 bytesrw 6 - gpt 6 + nox-gpt 7 7 mbr 8 8 squashfs 9 9 initramfs ··· 13 13 logs 14 14 uuidm 15 15 unix 16 - xdge)) 16 + nox-xdge))
+3 -3
uniboot/uniboot.opam
··· 15 15 "dune" {>= "3.21"} 16 16 "ocaml" {>= "5.1"} 17 17 "bytesrw" {>= "0.1"} 18 - "gpt" {>= "0.1"} 18 + "nox-gpt" {>= "0.1"} 19 19 "mbr" {>= "0.1"} 20 20 "squashfs" {>= "0.1"} 21 21 "initramfs" {>= "0.1"} 22 22 "oci" 23 23 "eio" {>= "1.0"} 24 - "xdge" 24 + "nox-xdge" 25 25 "cmdliner" {>= "1.2"} 26 26 "fmt" {>= "0.9"} 27 27 "logs" {>= "0.7"} 28 28 "vlog" {>= "0.1"} 29 29 "uuidm" {>= "0.9.9"} 30 - "memtrace" 30 + "nox-memtrace" 31 31 "monopam-info" 32 32 "mdx" {with-test} 33 33 "alcotest" {with-test}
+1 -1
xdge/dune
··· 9 9 10 10 (mdx 11 11 (files README.md) 12 - (libraries xdge)) 12 + (libraries nox-xdge))
+2 -2
xdge/dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name xdge) 4 + (name nox-xdge) 5 5 6 6 (generate_opam_files true) 7 7 ··· 14 14 (maintenance_intent "(latest)") 15 15 16 16 (package 17 - (name xdge) 17 + (name nox-xdge) 18 18 (synopsis "XDG Base Directory Specification support for Eio") 19 19 (tags (org:blacksun eio system)) 20 20 (description
+1 -1
xdge/lib/dune
··· 1 1 (library 2 - (public_name xdge) 2 + (public_name nox-xdge) 3 3 (name xdge) 4 4 (libraries eio xdg unix cmdliner fmt))
+1 -1
xdge/test/cram/helpers/dune
··· 1 1 (executable 2 2 (name xdg_example) 3 - (libraries xdge eio_main cmdliner fmt)) 3 + (libraries nox-xdge eio_main cmdliner fmt))
+1 -1
xdge/test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries xdge eio eio_main alcotest fmt)) 3 + (libraries nox-xdge eio eio_main alcotest fmt))
xdge/xdge.opam xdge/nox-xdge.opam
xdge/xdge.opam.template xdge/nox-xdge.opam.template