-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeout.cabal
88 lines (75 loc) · 2.06 KB
/
timeout.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
Name: timeout
Version: 0.1.1
Synopsis: Generalized sleep and timeout functions
Description: Generalized sleep and timeout functions
License: MIT
License-file: LICENSE
Copyright: 2014 Fedor Gogolev
2013 Selectel
Author: Fedor Gogolev <[email protected]>
Maintainer: [email protected]
Homepage: https://github.com/lambda-llama/timeout
Bug-reports: https://github.com/lambda-llama/timeout/issues
Category: Concurrency, Control
Stability: Alpha
Build-type: Simple
Cabal-version: >= 1.12
Tested-with: GHC == 7.6.*
extra-source-files:
README.md
CHANGES.md
Library
Hs-source-dirs: src
Ghc-options: -Wall -fno-warn-orphans
Default-language: Haskell2010
Build-depends:
base < 5
, time
, mtl
, exceptions >= 0.6
, psqueues
Exposed-modules:
Control.Timeout
Other-modules:
Control.Timeout.TimerManager
Control.Timeout.TimerManager.Local
Control.Timeout.Types
Control.Timeout.Unique
Control.Timeout.Utils
Test-suite timeout-tests
Main-is: Tests.hs
Hs-source-dirs: src, tests
Default-language: Haskell2010
Type: exitcode-stdio-1.0
Ghc-options: -Wall
Other-modules:
Control.Timeout.Tests
Build-depends:
base
, time
, mtl
, exceptions
, psqueues
, tasty
, tasty-quickcheck
, QuickCheck >= 2.7
Test-suite timeout-tests-threaded
Main-is: Tests.hs
Hs-source-dirs: src, tests
Default-language: Haskell2010
Type: exitcode-stdio-1.0
Ghc-options: -Wall -threaded
Other-modules:
Control.Timeout.Tests
Build-depends:
base
, time
, mtl
, exceptions >= 0.6
, psqueues
, tasty
, tasty-quickcheck
, QuickCheck >= 2.7
Source-repository head
Type: git
Location: https://github.com/lambda-llama/timeout