TCP/TLS connection pooling for Eio
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "Protocol-agnostic TCP/IP connection pooling library for Eio"
4description:
5 "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.)"
6maintainer: ["Your Name"]
7authors: ["Your Name"]
8license: "MIT"
9homepage: "https://github.com/username/conpool"
10bug-reports: "https://github.com/username/conpool/issues"
11depends: [
12 "ocaml"
13 "dune" {>= "3.0" & >= "3.0"}
14 "eio"
15 "tls-eio" {>= "1.0"}
16 "logs"
17 "fmt"
18 "cmdliner"
19 "odoc" {with-doc}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@runtest" {with-test}
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/username/conpool.git"