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"] 15remove: [ 16 ["ocamlfind" "remove" "resource-pooling"] 17] 18depends: [ 19 "ocaml" {>= "4.06" & < "5.0.0"} 20 "lwt" {>= "2.4.7"} 21 "lwt_log" 22 "ocamlbuild" {build} 23 "ocamlfind" {build} 24] 25flags: light-uninstall 26url { 27 src: "https://github.com/ocsigen/resource-pooling/archive/0.5.2.tar.gz" 28 checksum: [ 29 "md5=22ecba9404b21baf5236967714b1bfbf" 30 "sha512=76f8bf781990b63d327f3ae31b6df4f79ff5e5149c4e878bd59627043ae4e5761c5fb03fa6beb83c3c1471603a2a74174d3db8e20add131cd5849db08f79a398" 31 ] 32}