OCaml HTTP cookie handling library with support for Eio-based storage jars

metadata

+8 -9
+4 -4
cookeio.opam
··· 10 10 doc: "https://tangled.sh/@anil.recoil.org/ocaml-cookeio" 11 11 bug-reports: "https://tangled.sh/@anil.recoil.org/ocaml-cookeio/issues" 12 12 depends: [ 13 + "dune" {>= "3.18"} 13 14 "ocaml" {>= "5.2.0"} 14 - "dune" {>= "3.20" & >= "3.20"} 15 - "logs" {>= "0.10.0"} 15 + "logs" {>= "0.9.0"} 16 16 "ptime" {>= "1.1.0"} 17 - "ipaddr" {>= "5.0.0"} 17 + "ipaddr" {>= "5.6.0"} 18 18 "domain-name" {>= "0.4.0"} 19 - "publicsuffix" {>= "0.1.0"} 19 + "publicsuffix" 20 20 "eio_main" 21 21 "alcotest" {with-test} 22 22 "odoc" {with-doc}
+4 -5
dune-project
··· 1 - (lang dune 3.20) 1 + (lang dune 3.18) 2 2 3 3 (name cookeio) 4 4 ··· 18 18 (description "Cookeio provides cookie parsing and serialization for OCaml applications. It handles parsing Set-Cookie and Cookie headers with full support for all cookie attributes.") 19 19 (depends 20 20 (ocaml (>= 5.2.0)) 21 - (dune (>= 3.20)) 22 - (logs (>= 0.10.0)) 21 + (logs (>= 0.9.0)) 23 22 (ptime (>= 1.1.0)) 24 - (ipaddr (>= 5.0.0)) 23 + (ipaddr (>= 5.6.0)) 25 24 (domain-name (>= 0.4.0)) 26 - (publicsuffix (>= 0.1.0)) 25 + publicsuffix 27 26 eio_main 28 27 (alcotest :with-test) 29 28 (odoc :with-doc)))