-
Notifications
You must be signed in to change notification settings - Fork 5
/
timers.cabal
40 lines (34 loc) · 1.15 KB
/
timers.cabal
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
31
32
33
34
35
36
37
38
39
40
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ř <[email protected]>
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