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
|