-
Notifications
You must be signed in to change notification settings - Fork 16
/
dune-project
185 lines (170 loc) · 3.06 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
(lang dune 3.2)
(name pgx)
(generate_opam_files true)
(license "LGPL-2.0-only with OCaml-LGPL-linking-exception")
(maintainers "Arena Developers <silver-snakes@arena.io>")
(authors "Arena Developers <silver-snakes@arena.io>")
(source
(github arenadotio/pgx))
(documentation "https://arenadotio.github.io/pgx")
(package
(name pgx)
(synopsis "Pure-OCaml PostgreSQL client library")
(description
"PGX is a pure-OCaml PostgreSQL client library, supporting Async, LWT, or synchronous operations.")
(depends
(alcotest
(and
:with-test
(>= 1.0.0)))
(bisect_ppx
(and
:dev
(>= 2.0.0)))
(dune
(>= 3.2))
hex
ipaddr
camlp-streams
(ocaml
(>= 4.08))
(odoc :with-doc)
(ppx_compare
(>= v0.13.0))
(ppx_custom_printf
(>= v0.13.0))
(ppx_sexp_conv
(>= v0.13.0))
(re
(>= 1.5.0))
(sexplib0
(>= v0.13.0))
uuidm))
(package
(name pgx_unix)
(synopsis
"PGX using the standard library's Unix module for IO (synchronous)")
(description
"PGX using the standard library's Unix module for IO (synchronous)")
(depends
(alcotest
(and
:with-test
(>= 1.0.0)))
(base64
(and
:with-test
(>= 3.0.0)))
(ocaml
(>= 4.08))
(pgx
(= :version))))
(package
(name pgx_async)
(synopsis "Pgx using Async for IO")
(description "Pgx using Async for IO")
(depends
(alcotest-async
(and
:with-test
(>= "1.0.0")))
(async_kernel
(>= "v0.13.0"))
(async_unix
(>= "v0.13.0"))
async_ssl
(base64
(and
:with-test
(>= 3.0.0)))
(conduit-async
(>= 1.5.0))
(ocaml
(>= 4.08))
(pgx
(= :version))
(pgx_value_core
(= :version))))
(package
(name pgx_lwt)
(synopsis "Pgx using Lwt for IO")
(description "Pgx using Lwt for IO")
(depends
lwt
logs
(ocaml
(>= 4.08))
(pgx
(= :version))))
(package
(name pgx_lwt_unix)
(synopsis "Pgx using Lwt and Unix libraries for IO")
(description "Pgx using Lwt and Unix libraries for IO")
(depends
(alcotest-lwt
(and
:with-test
(>= "1.0.0")))
(base64
(and
:with-test
(>= 3.0.0)))
(ocaml
(>= 4.08))
(pgx
(= :version))
(pgx_lwt
(= :version))))
(package
(name pgx_value_core)
(synopsis "Pgx_value converters for Core types like Date and Time")
(description "Pgx_value converters for Core types like Date and Time")
(depends
(alcotest
(and
:with-test
(>= 1.0.0)))
(core_kernel
(>= "v0.13.0"))
(ocaml
(>= 4.08))
(pgx
(= :version))))
(package
(name pgx_value_ptime)
(synopsis "Pgx_value converters for Ptime types")
(description "Pgx_value converters for Ptime types")
(depends
(alcotest
(and
:with-test
(>= 1.0.0)))
(ptime
(>= 0.8.3))
(ocaml
(>= 4.08))
(pgx
(= :version))))
(package
(name pgx_lwt_mirage)
(synopsis "Pgx using Lwt on Mirage for IO")
(description "Pgx using Lwt on Mirage for IO")
(depends
lwt
(ocaml
(>= 4.08))
logs
mirage-channel
(conduit-mirage
(>= 2.3.0))
(dns-client
(>= 6.0.0))
mirage-random
mirage-time
mirage-clock
(tcpip
(>= 7.0.0))
(pgx
(= :version))
(pgx_lwt
(= :version))))