tangled
alpha
login
or
join now
anil.recoil.org
/
aoah-opam-repo
0
fork
atom
The opam repository for my Advent of Agentic Humps 2025
0
fork
atom
overview
issues
pulls
pipelines
conpool
anil.recoil.org
3 months ago
a8bc83ca
45532ca7
0/1
build.yml
failed
2m 40s
+38
1 changed file
expand all
collapse all
unified
split
packages
conpool
conpool.dev
opam
+38
packages/conpool/conpool.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "Protocol-agnostic TCP/IP connection pooling library for Eio"
3
3
+
description:
4
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
5
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
6
6
+
authors: ["Anil Madhavapeddy <anil@recoil.org>"]
7
7
+
license: "ISC"
8
8
+
homepage: "https://tangled.org/@anil.recoil.org/ocaml-conpool"
9
9
+
bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-conpool/issues"
10
10
+
depends: [
11
11
+
"ocaml" {>= "5.1.0"}
12
12
+
"dune" {>= "3.20" & >= "3.0"}
13
13
+
"eio"
14
14
+
"tls-eio" {>= "1.0"}
15
15
+
"logs"
16
16
+
"fmt"
17
17
+
"cmdliner"
18
18
+
"odoc" {with-doc}
19
19
+
]
20
20
+
build: [
21
21
+
["dune" "subst"] {dev}
22
22
+
[
23
23
+
"dune"
24
24
+
"build"
25
25
+
"-p"
26
26
+
name
27
27
+
"-j"
28
28
+
jobs
29
29
+
"@install"
30
30
+
"@runtest" {with-test}
31
31
+
"@doc" {with-doc}
32
32
+
]
33
33
+
]
34
34
+
dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git"
35
35
+
url {
36
36
+
src: "git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main"
37
37
+
}
38
38
+
x-maintenance-intent: ["(latest)"]