packages feed

timers-0.2.0.0: timers.cabal

name:                timers
version:             0.2.0.0
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.8

extra-source-files:
    LICENSE
  , README.md

library
    exposed-modules:
        Control.Concurrent.Timer
      , Control.Concurrent.Timer.Lifted

    other-modules:
        Control.Concurrent.Timer.Types

    build-depends:
        base              == 4.5.*
      , lifted-base       == 0.1.*
      , monad-control     == 0.3.*
      , transformers-base == 0.4.*
      , suspend           == 0.1.*

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

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