cabal-version: >=1.10 name: token-bucket version: 0.1.0.1 x-revision: 4 synopsis: Rate limiter using lazy bucket algorithm homepage: https://github.com/hvr/token-bucket bug-reports: https://github.com/hvr/token-bucket/issues license: GPL-3 license-file: LICENSE author: Herbert Valerio Riedel maintainer: hvr@gnu.org category: Concurrency build-type: Simple description: This package provides a variant of a [Token Bucket](https://en.wikipedia.org/wiki/Token_bucket) or [Leaky Bucket](https://en.wikipedia.org/wiki/Leaky_bucket) rate-limiting algorithm optimised for low overhead. . The rate-limiting variant implemented by this package is heavily inspired by the algorithm described in . extra-source-files: changelog.md source-repository head type: git location: https://github.com/hvr/token-bucket.git flag use-cbits description: Use optimized getPOSIXTime implementation (faster by roughly one order of magnitude) manual: True default: True library default-language: Haskell2010 build-depends: base >=4.6 && <4.13 hs-source-dirs: src if flag(use-cbits) cpp-options: -DUSE_CBITS c-sources: cbits/get_posix_time.c else build-depends: time >=1.4 && <1.9 ghc-options: -Wall exposed-modules: Control.Concurrent.TokenBucket test-suite test-tb default-language: Haskell2010 type: exitcode-stdio-1.0 build-depends: base >=4.6 && <4.13 , time >=1.4 && <1.9 , token-bucket main-is: test-tb.hs ghc-options: -Wall -threaded -rtsopts