My agentic slop goes here. Not intended for anyone else!
1(lang dune 3.0)
2(name conpool)
3
4(generate_opam_files true)
5
6(source
7 (github username/conpool))
8
9(authors "Your Name")
10
11(maintainers "Your Name")
12
13(license MIT)
14
15(package
16 (name conpool)
17 (synopsis "Protocol-agnostic TCP/IP connection pooling library for Eio")
18 (description "Conpool is a connection pooling library built on Eio.Pool that manages TCP connection lifecycles, validates connection health, and provides per-endpoint resource limiting for any TCP-based protocol (HTTP, Redis, PostgreSQL, etc.)")
19 (depends
20 ocaml
21 (dune (>= 3.0))
22 eio
23 (tls-eio (>= 1.0))
24 logs))