The opam repository for my Advent of Agentic Humps 2025

conpool

+38
+38
packages/conpool/conpool.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Protocol-agnostic TCP/IP connection pooling library for Eio" 3 + description: 4 + "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.)" 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy <anil@recoil.org>"] 7 + license: "ISC" 8 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-conpool" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-conpool/issues" 10 + depends: [ 11 + "ocaml" {>= "5.1.0"} 12 + "dune" {>= "3.20" & >= "3.0"} 13 + "eio" 14 + "tls-eio" {>= "1.0"} 15 + "logs" 16 + "fmt" 17 + "cmdliner" 18 + "odoc" {with-doc} 19 + ] 20 + build: [ 21 + ["dune" "subst"] {dev} 22 + [ 23 + "dune" 24 + "build" 25 + "-p" 26 + name 27 + "-j" 28 + jobs 29 + "@install" 30 + "@runtest" {with-test} 31 + "@doc" {with-doc} 32 + ] 33 + ] 34 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git" 35 + url { 36 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main" 37 + } 38 + x-maintenance-intent: ["(latest)"]