Cookie parsing, validation, and jar management following RFC 6265.
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
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))
cookie.opam nox-cookie.opam
cookie.opam.template nox-cookie.opam.template
+1 -1
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
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
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
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
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
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