packages feed

ratelimiter-0.1.0: ratelimiter.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 8abbf5dee172728a76890aceb5dd74e24de46d5f252563c5a1a1a80e06444b12

name:           ratelimiter
version:        0.1.0
synopsis:       In-memory rate limiter
description:    An in-memory rate limiter implementation
category:       Web
homepage:       https://github.com/agrafix/ratelimiter#readme
bug-reports:    https://github.com/agrafix/ratelimiter/issues
author:         Alexander Thiemann <mail@thiemann.at>
maintainer:     Alexander Thiemann <mail@thiemann.at>
copyright:      2020 Alexander Thiemann <mail@thiemann.at>
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/agrafix/ratelimiter

library
  exposed-modules:
      Control.RateLimiter
  other-modules:
      Paths_ratelimiter
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
    , containers
    , extra
    , mtl
    , time
    , timespan
    , vector
  default-language: Haskell2010

test-suite ratelimiter-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_ratelimiter
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , containers
    , extra
    , mtl
    , ratelimiter
    , time
    , timespan
    , vector
  default-language: Haskell2010