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 jsonm
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 (alcotest :with-test)))
30
31(package
32 (name zulip_botserver)
33 (synopsis "OCaml bot server for running multiple Zulip bots")
34 (description "HTTP server for running multiple Zulip bots with webhook support")
35 (depends
36 ocaml
37 dune
38 zulip
39 zulip_bot
40 eio
41 requests
42 (alcotest :with-test)))