this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/resource_cache" 5bug-reports: "https://github.com/janestreet/resource_cache/issues" 6dev-repo: "git+https://github.com/janestreet/resource_cache.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/resource_cache/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.08.0"} 14 "async_kernel" {>= "v0.13" & < "v0.14"} 15 "async_rpc_kernel" {>= "v0.13" & < "v0.14"} 16 "core_kernel" {>= "v0.13" & < "v0.14"} 17 "ppx_jane" {>= "v0.13" & < "v0.14"} 18 "dune" {>= "1.5.1"} 19] 20synopsis: "General resource cache" 21description: " 22This library offers a functor to create a resource cache over some 23abstract [Resource] type. The cache enables resource reuse while 24obeying various limits. 25" 26url { 27 src: 28 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/resource_cache-v0.13.0.tar.gz" 29 checksum: [ 30 "sha256=32d6f71eac7895b39cd9284ea879b0a6cb37b81d1151829b72add99726f56301" 31 "md5=65041292edcb8a0c3577b454f76acbaa" 32 ] 33}