-
Notifications
You must be signed in to change notification settings - Fork 2
/
threadmanager.cabal
50 lines (36 loc) · 1.28 KB
/
threadmanager.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
name: threadmanager
version: 0.1.7
category: Concurrency
author: _Real World Haskell_, http://www.realworldhaskell.org/
maintainer: Brian Lewis <[email protected]>
license: BSD3
license-file: LICENSE
synopsis: (deprecated in favor of 'threads') Simple thread management
description:
This package is useful, but deprecated. In new code, please use
<http://hackage.haskell.org/package/threads threads> instead.
.
A simple thread management API inspired by the one in
<http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html chapter 24 of Real World Haskell>.
cabal-version: >= 1.10
build-type: Simple
--------------------------------------------------------------------------------
extra-source-files:
README.md
--------------------------------------------------------------------------------
library
default-language: Haskell2010
ghc-options: -Wall -O2
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
exposed-modules:
Control.Concurrent.ThreadManager
hs-source-dirs:
src
build-depends:
base > 3 && < 5,
containers == 0.5.*
--------------------------------------------------------------------------------
source-repository head
type: git
location: git://github.com/bsl/threadmanager.git