packages feed

timers-0.2.0.4: timers.cabal

name:                timers
version:             0.2.0.4
synopsis:            Simple package that implements timers.
description:         Simple package that implements timers. Both "one-shot" and "repeating" timers are implemented.
license:             BSD3
license-file:        LICENSE
author:              Petr Pilař
maintainer:          Petr Pilař <maintainer+the.palmik@gmail.com>
copyright:           Petr Pilař 2012
category:            Concurrency
stability:           Experimental
build-type:          Simple
cabal-version:       >=1.10

extra-source-files:
    LICENSE
  , README.md

library
  default-language: Haskell2010
  exposed-modules:
      Control.Concurrent.Timer
    , Control.Concurrent.Timer.Lifted

  other-modules:
      Control.Concurrent.Timer.Types

  build-depends:
      base              >= 4.5    && < 5
    , lifted-base       >= 0.1    && < 0.3
    , monad-control     >= 1.0.0  && < 2
    , suspend           >= 0.2    && < 0.3
    , transformers-base >= 0.4    && < 0.5

  hs-source-dirs:      src
  ghc-options:         -Wall -fwarn-unused-imports

source-repository head
  type:     git
  location: git://github.com/Palmik/timers.git