-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstrict-concurrency.cabal
55 lines (53 loc) · 1.87 KB
/
strict-concurrency.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
Name: strict-concurrency
Version: 0.2.4.3
Synopsis: Strict concurrency abstractions
Category: Control
Description:
This package provides head normal form strict versions of some
standard Haskell concurrency abstractions (MVars,Chans), which
provide control over where evaluation takes place not offered by
the default lazy types. This may be useful for deciding when and
where evaluation occurs, leading to improved time or space use,
depending on the circumstances.
License: BSD3
License-File: LICENSE
Author: Don Stewart <dons@galois.com>
Maintainer: Yitz Gale <gale@sefer.org>
Copyright: (c) 2007-10 Don Stewart, 2017 Yitzchak Gale
Homepage: https://github.com/ygale/strict-concurrency
Cabal-version: >=1.10
Build-type: Simple
Tested-with: GHC == 7.0.4,
GHC == 7.2.1,
GHC == 7.2.2,
GHC == 7.4.1,
GHC == 7.4.2,
GHC == 7.6.1,
GHC == 7.6.2,
GHC == 7.6.3,
GHC == 7.8.1,
GHC == 7.8.2,
GHC == 7.8.3,
GHC == 7.8.4
GHC == 7.10.1,
GHC == 7.10.2,
GHC == 7.10.3
GHC == 8.0.1,
GHC == 8.0.2
GHC == 8.2.1,
GHC == 8.2.2
GHC == 8.4.1,
GHC == 8.4.2,
GHC == 8.4.3
GHC == 8.6.1
Source-repository HEAD
type: git
location: https://github.com/ygale/strict-concurrency.git
Library
default-language: Haskell2010
hs-source-dirs: .
build-depends: base >= 4 && < 5
, deepseq >= 1.4.2 && < 1.6
ghc-options: -Wall
exposed-modules: Control.Concurrent.MVar.Strict
Control.Concurrent.Chan.Strict