My agentic slop goes here. Not intended for anyone else!
1(lang dune 3.0)
2
3(name ocaml-zulip)
4
5(package
6 (name zulip)
7 (synopsis "OCaml bindings for the Zulip REST API")
8 (description "High-quality OCaml bindings to the Zulip REST API using EIO for async operations")
9 (depends
10 ocaml
11 dune
12 eio
13 requests
14 ezjsonm
15 uri
16 base64
17 (alcotest :with-test)
18 (eio_main :with-test)))
19
20(package
21 (name zulip_bot)
22 (synopsis "OCaml bot framework for Zulip")
23 (description "Interactive bot framework built on the OCaml Zulip library")
24 (depends
25 ocaml
26 dune
27 zulip
28 eio
29 ezjsonm
30 (alcotest :with-test)))
31
32(package
33 (name zulip_botserver)
34 (synopsis "OCaml bot server for running multiple Zulip bots")
35 (description "HTTP server for running multiple Zulip bots with webhook support")
36 (depends
37 ocaml
38 dune
39 zulip
40 zulip_bot
41 eio
42 requests
43 (alcotest :with-test)))