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

metadata

Changed files
+8 -9
+4 -4
cookeio.opam
···
doc: "https://tangled.sh/@anil.recoil.org/ocaml-cookeio"
bug-reports: "https://tangled.sh/@anil.recoil.org/ocaml-cookeio/issues"
depends: [
+
"dune" {>= "3.18"}
"ocaml" {>= "5.2.0"}
-
"dune" {>= "3.20" & >= "3.20"}
-
"logs" {>= "0.10.0"}
+
"logs" {>= "0.9.0"}
"ptime" {>= "1.1.0"}
-
"ipaddr" {>= "5.0.0"}
+
"ipaddr" {>= "5.6.0"}
"domain-name" {>= "0.4.0"}
-
"publicsuffix" {>= "0.1.0"}
+
"publicsuffix"
"eio_main"
"alcotest" {with-test}
"odoc" {with-doc}
+4 -5
dune-project
···
-
(lang dune 3.20)
+
(lang dune 3.18)
(name cookeio)
···
(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.")
(depends
(ocaml (>= 5.2.0))
-
(dune (>= 3.20))
-
(logs (>= 0.10.0))
+
(logs (>= 0.9.0))
(ptime (>= 1.1.0))
-
(ipaddr (>= 5.0.0))
+
(ipaddr (>= 5.6.0))
(domain-name (>= 0.4.0))
-
(publicsuffix (>= 0.1.0))
+
publicsuffix
eio_main
(alcotest :with-test)
(odoc :with-doc)))