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: [
11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
12 ["ocaml" "setup.ml" "-build"]
13]
14install: ["ocaml" "setup.ml" "-install"]
15depends: [
16 "ocaml" {>= "4.06" & < "5.0.0"}
17 "lwt" {>= "2.4.7"}
18 "lwt_log"
19 "ocamlbuild" {build}
20 "ocamlfind" {build}
21]
22url {
23 src: "https://github.com/ocsigen/resource-pooling/archive/0.8.tar.gz"
24 checksum: [
25 "md5=52afb6168141a06551a4c7721339be5c"
26 "sha512=027507959a454e498fed37f016174abbce8a803b19d203c39403d64e25f01204d116d9a43e8d2f0559da714db6c406a2a689dda634d0bd01fdd37097e94074f0"
27 ]
28}