this repo has no description
1opam-version: "2.0"
2maintainer: "Jan Rochel <jan@besport.com>"
3authors: [ "Jan Rochel (BeSport)" ]
4synopsis: "Library for pooling resources like connections, threads, or similar"
5description: "This package is derived from the module Lwt_pool from the lwt package, which implements resource pooling. With Resource_pool this package provides a modified version with additional features. Also there is a module called Server_pool that manages resource clusters, specifically a cluster of servers each with its own connection pool."
6license: "MIT"
7homepage: "https://github.com/ocsigen/resource-pooling"
8dev-repo: "git+https://github.com/ocsigen/resource-pooling.git"
9bug-reports: "https://github.com/ocsigen/resource-pooling/issues"
10build: [["dune" "build" "-p" name "-j" jobs]]
11depends: [
12 "ocaml" {>= "4.06"}
13 "dune" {>= "1.11"}
14 "lwt" {>= "2.4.7"}
15 "lwt_log"
16]
17url {
18 src: "https://github.com/ocsigen/resource-pooling/archive/1.1.tar.gz"
19 checksum: [
20 "md5=157de5cafe031c39eaade341d1054e7f"
21 "sha512=c5c4f0cdd84521fc17f8e371cfb5c99499eceb407644f423d9990a6be5ed7010adf8674d771e35a7113a4774a84a0a01437e9282977509d3ee725d6e2d4995fb"
22 ]
23}