HTTP types: headers, status codes, methods, bodies, MIME types
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prefix all blacksun packages with nox-

Renames 35 packages to make blacksun forks distinguishable from their
opam-repository upstreams. Module names (Git.x, Tls.x, ...) stay bare;
opam package names and dune (public_name) findlib references move to
nox-X. After this commit, zero local package names overlap with
opam-repository.

Renamed:
- nox-git, nox-irmin
- nox-crypto, nox-crypto-pk, nox-crypto-rng, nox-crypto-ec
- nox-tls, nox-tls-eio, nox-tar, nox-tar-eio, nox-tty, nox-tty-eio
- nox-arp, nox-ca-certs, nox-cbor, nox-cookie, nox-crc, nox-csv
- nox-gpt, nox-hkdf, nox-http, nox-jwt, nox-kdf, nox-loc
- nox-memtrace, nox-pds, nox-sexp, nox-slack, nox-toml
- nox-websocket, nox-x509, nox-xdge, nox-yaml

Also drops orphan tar-mirage and tar-unix opam templates that had no
matching package stanza.

+9 -9
+1 -1
dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries http)) 7 + (libraries nox-http))
+3 -3
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
http.opam 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"
http.opam.template nox-http.opam.template
+2 -2
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
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
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)))