File: rate-limit.cabal

package info (click to toggle)
haskell-rate-limit 1.4.3-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 76 kB
  • sloc: haskell: 107; makefile: 5
file content (30 lines) | stat: -rw-r--r-- 963 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Name: rate-limit
Version: 1.4.3
Build-Type: Simple
Cabal-Version: >= 1.10
License: BSD3
License-File: LICENSE
Author: Adam Wick <awick@uhsure.com>
Maintainer: Adam Wick <awick@uhsure.com>
Homepage: http://github.com/acw/rate-limit
Category: Control
Synopsis: A basic library for rate-limiting IO actions.

Description:
  In many cases, it is useful, necessary, or simply nice to limit how
  frequently you perform some action. For example, you may want to limit
  how often your program makes a request of some web site. This library
  is intended as a general-purpose mechanism for rate-limiting IO actions. 

Library
  Build-Depends: base       >= 4.0     && < 5.0
               , stm        >= 2.4     && < 2.6
               , time-units >= 1.0     && < 2.0
               , time       >= 1.5.0.1 && < 1.15
  Exposed-Modules: Control.RateLimit
  default-language: Haskell2010

source-repository head
  type: git
  location: http://github.com/acw/time-units