-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
102 lines (86 loc) · 2.44 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
(lang dune 3.7)
(name typesense)
(version dev)
(source (github sabine/typesense-ocaml))
(homepage "https://github.com/sabine/typesense-ocaml")
(license MIT)
(authors
"Sabine Schmaltz")
(maintainers
"Sabine Schmaltz")
(generate_opam_files true)
(package
(name typesense)
(synopsis "OCaml HTTP client for Typesense")
(description "Client bindings for interfacing with Typesense,
an open-source, typo-tolerant search engine.
Abstracts over the HTTP requests to the Typesense server API and
marshalls the responses from the Typesense server into
OCaml data structures to provide a type-safe interface
to your Typesense server.")
(tags ("typesense" "search" "http client" "client bindings"))
(depends
(ocaml (>= 4.08.0))
dune
yojson
ppx_yojson_conv
uri
))
(package
(name typesense-cohttp-lwt-unix)
(synopsis "OCaml client for Typesense, using cohttp-lwt-unix")
(description "Client bindings for interfacing with Typesense,
an open-source, typo-tolerant search engine.
Abstracts over the HTTP requests to the Typesense server API and
marshalls the responses from the Typesense server into
OCaml data structures to provide a type-safe interface
to your Typesense server.")
(tags ("typesense" "search" "http client" "client bindings"))
(depends
(ocaml (>= 4.08.0))
dune
yojson
ppx_yojson_conv
uri
cohttp
cohttp-lwt-unix
))
(package
(name typesense-cohttp-eio)
(synopsis "OCaml client for Typesense, using cohttp-eio")
(description "Client bindings for interfacing with Typesense,
an open-source, typo-tolerant search engine.
Abstracts over the HTTP requests to the Typesense server API and
marshalls the responses from the Typesense server into
OCaml data structures to provide a type-safe interface
to your Typesense server.")
(tags ("typesense" "search" "http client" "client bindings"))
(depends
(ocaml (>= 4.08.0))
dune
yojson
ppx_yojson_conv
uri
cohttp
cohttp-eio
))
(package
(name typesense-blink-riot)
(synopsis "OCaml client for Typesense, using blink + riot")
(description "Client bindings for interfacing with Typesense,
an open-source, typo-tolerant search engine.
Abstracts over the HTTP requests to the Typesense server API and
marshalls the responses from the Typesense server into
OCaml data structures to provide a type-safe interface
to your Typesense server.")
(tags ("typesense" "search" "http client" "client bindings"))
(depends
(ocaml (>= 4.08.0))
dune
yojson
ppx_yojson_conv
uri
riot
blink
httpaf ; for blink
))