-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdune-project
105 lines (91 loc) · 1.69 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
(lang dune 3.0)
(name httpun-ws)
(generate_opam_files true)
(source
(github anmonteiro/httpun-ws))
(authors
"Spiros Eliopoulos <[email protected]>"
"Antonio Nuno Monteiro <[email protected]>")
(maintainers "Antonio Nuno Monteiro <[email protected]>")
(homepage "https://github.com/anmonteiro/httpun-ws")
(bug_reports "https://github.com/anmonteiro/httpun-ws/issues")
(license "BSD-3-clause")
(package
(name httpun-ws)
(synopsis "Websocket implementation for httpun")
(depends
(ocaml
(>= "4.08"))
(base64
(>= "3.0.0"))
bigstringaf
(angstrom
(>= "0.14.0"))
(faraday
(>= "0.8.0"))
(gluten
(>= "0.2.0"))
httpun
(alcotest :with-test)))
(package
(name httpun-ws-lwt)
(synopsis "Lwt support for httpun")
(depends
(ocaml
(>= "4.08"))
(httpun-ws
(= :version))
lwt
(digestif
(>= "1.2.0"))
(gluten-lwt
(>= "0.2.0"))))
(package
(name httpun-ws-lwt-unix)
(synopsis "Lwt + unix support for httpun-ws")
(depends
(ocaml
(>= "4.08"))
(httpun-ws-lwt
(= :version))
(gluten-lwt-unix
(>= "0.2.0"))))
(package
(name httpun-ws-eio)
(synopsis "Eio support for httpun")
(depends
(ocaml
(>= "4.08"))
(httpun-ws
(= :version))
(digestif
(>= "1.2.0"))
(gluten-eio
(>= "0.2.1"))))
(package
(name httpun-ws-mirage)
(synopsis "Mirage support for httpun")
(depends
(ocaml
(>= "4.08"))
(httpun-ws-lwt
(= :version))
(gluten-mirage
(>= "0.5.0"))
(mirage-flow
(>= "2.0.0"))
cstruct))
(package
(name httpun-ws-async)
(synopsis "Mirage support for httpun")
(depends
(ocaml
(>= "4.08"))
(httpun-ws
(= :version))
(async
(>= "v0.15.0"))
(gluten-async
(>= "0.5.0"))
(digestif
(>= "1.2.0"))))