TCP/TLS connection pooling for Eio
1(lang dune 3.21)
2(name conpool)
3
4(generate_opam_files true)
5
6(license ISC)
7(authors "Anil Madhavapeddy <anil@recoil.org>")
8(maintainers "Anil Madhavapeddy <anil@recoil.org>")
9(source (tangled anil.recoil.org/ocaml-conpool))
10
11(package
12 (name conpool)
13 (synopsis "Protocol-agnostic TCP/IP connection pooling library for Eio")
14 (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.)")
15 (depends
16 (ocaml (>= 5.1.0))
17 (dune (>= 3.0))
18 eio
19 (tls-eio (>= 1.0))
20 logs
21 fmt
22 cmdliner
23 (odoc :with-doc)))