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