-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathparallel.cabal
More file actions
65 lines (54 loc) · 1.63 KB
/
parallel.cabal
File metadata and controls
65 lines (54 loc) · 1.63 KB
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
cabal-version: 3.0
name: parallel
version: 3.3.0.0
-- NOTE: Don't forget to update ./changelog.md
license: BSD-3-Clause
license-file: LICENSE
maintainer: [email protected]
bug-reports: https://github.com/haskell/parallel/issues
synopsis: Parallel programming library
category: Control, Parallelism
tested-with:
GHC == 9.14.1
GHC == 9.12.2
GHC == 9.10.1
GHC == 9.8.4
GHC == 9.6.7
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
GHC == 8.2.2
GHC == 8.0.2
MHS
description:
This package provides a library for parallel programming.
For documentation, start from the "Control.Parallel.Strategies"
module below.
For more tutorial documentation, see the book [Parallel and Concurrent Programming in Haskell](https://simonmar.github.io/pages/pcph.html).
To understand the principles behind the library, see
[Seq no more: Better Strategies for Parallel Haskell](https://simonmar.github.io/bib/papers/strategies.pdf).
extra-doc-files: changelog.md
source-repository head
type: git
location: https://github.com/haskell/parallel.git
library
default-language: Haskell2010
other-extensions:
BangPatterns
CPP
MagicHash
UnboxedTuples
exposed-modules:
Control.Seq
Control.Parallel
Control.Parallel.Strategies
build-depends:
array >= 0.3 && < 0.6,
base >= 4.3 && < 4.23,
containers >= 0.4 && < 0.9,
deepseq >= 1.1 && < 1.6
ghc-options: -Wall -feager-blackholing