-
Notifications
You must be signed in to change notification settings - Fork 3
/
dune-project
71 lines (65 loc) · 1.68 KB
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
(lang dune 1.11)
(name cookie)
(license BSD3-clause)
(source (github ulrikstrid/ocaml-cookie))
(homepage https://ulrikstrid.github.io/ocaml-cookie)
(documentation https://ulrikstrid.github.io/ocaml-cookie)
(authors "Ulrik Strid")
(maintainers "[email protected]")
(version 0.1.8)
(generate_opam_files true)
(using fmt 1.2)
(package
(name cookie)
(synopsis "Cookie handling for OCaml and ReasonML")
(description "Parsing and printing cookies in OCaml and Reason")
(depends
(ocaml (>= 4.07.0))
uri
ptime
astring
(alcotest :with-test)
(junit :with-test)
(junit_alcotest :with-test)
)
)
(package
(name session-cookie)
(synopsis "Session handling for OCaml and ReasonML")
(description "Session implementation using the cookie library")
(depends
(ocaml (>= 4.07.0))
(cookie (= :version))
session
(base :with-test)
(alcotest :with-test)
(junit :with-test)
(junit_alcotest :with-test)
)
)
(package
(name session-cookie-async)
(synopsis "Session handling for OCaml and ReasonML")
(description "Session implementation using the cookie library with async support")
(depends
(ocaml (>= 4.07.0))
(session-cookie (= :version))
async
(alcotest :with-test)
(junit :with-test)
(junit_alcotest :with-test)
)
)
(package
(name session-cookie-lwt)
(synopsis "Session handling for OCaml and ReasonML")
(description "Session implementation using the cookie library with lwt support")
(depends
(ocaml (>= 4.07.0))
(session-cookie (= :version))
lwt
(alcotest :with-test)
(junit :with-test)
(junit_alcotest :with-test)
)
)