File: strict-concurrency.cabal

package info (click to toggle)
haskell-strict-concurrency 0.2.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 84 kB
  • sloc: haskell: 230; sh: 28; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 1,028 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Name:           strict-concurrency
Version:        0.2.4.1
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:     Don Stewart <dons@galois.com>
Copyright:      (c) 2007-10 Don Stewart
Homepage:       http://code.haskell.org/~dons/code/strict-concurrency
build-depends:  base >= 4 && < 5, deepseq >= 1
ghc-options:    -Wall -fglasgow-exts
extensions:     CPP, BangPatterns
build-type:     Simple
exposed-modules: Control.Concurrent.MVar.Strict
                 Control.Concurrent.Chan.Strict