tangled
alpha
login
or
join now
anil.recoil.org
/
ocaml-cookeio
0
fork
atom
OCaml HTTP cookie handling library with support for Eio-based storage jars
0
fork
atom
overview
issues
pulls
pipelines
metadata
anil.recoil.org
3 months ago
cf54ed60
1e4f6ac8
1/1
build.yml
success
2min 48s
+8
-9
2 changed files
expand all
collapse all
unified
split
cookeio.opam
dune-project
+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
13
+
"dune" {>= "3.18"}
13
14
"ocaml" {>= "5.2.0"}
14
14
-
"dune" {>= "3.20" & >= "3.20"}
15
15
-
"logs" {>= "0.10.0"}
15
15
+
"logs" {>= "0.9.0"}
16
16
"ptime" {>= "1.1.0"}
17
17
-
"ipaddr" {>= "5.0.0"}
17
17
+
"ipaddr" {>= "5.6.0"}
18
18
"domain-name" {>= "0.4.0"}
19
19
-
"publicsuffix" {>= "0.1.0"}
19
19
+
"publicsuffix"
20
20
"eio_main"
21
21
"alcotest" {with-test}
22
22
"odoc" {with-doc}
+4
-5
dune-project
···
1
1
-
(lang dune 3.20)
1
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
21
-
(dune (>= 3.20))
22
22
-
(logs (>= 0.10.0))
21
21
+
(logs (>= 0.9.0))
23
22
(ptime (>= 1.1.0))
24
24
-
(ipaddr (>= 5.0.0))
23
23
+
(ipaddr (>= 5.6.0))
25
24
(domain-name (>= 0.4.0))
26
26
-
(publicsuffix (>= 0.1.0))
25
25
+
publicsuffix
27
26
eio_main
28
27
(alcotest :with-test)
29
28
(odoc :with-doc)))