-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmutable-array.cabal
More file actions
60 lines (56 loc) · 1.92 KB
/
mutable-array.cabal
File metadata and controls
60 lines (56 loc) · 1.92 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
cabal-version: 2.2
name: mutable-array
version: 0.1
synopsis: Mutable arrays.
description: Mutable arrays similar to linear-base with
efficient (but unsafe) splits and joins.
license: BSD-3-Clause
license-file: LICENSE
category: Data
build-type: Simple
extra-doc-files: CHANGELOG.md
common base
ghc-options: -Wall -Wcompat
default-language: Haskell2010
build-depends: base >= 4.15 && < 5
library
import: base
exposed-modules: Data.Array.Mutable.Primitive
Data.Array.Mutable.Primitive.Unlifted
Data.Array.Mutable.Prelude
Data.Array.Mutable.Parallel
Data.Array.Mutable.Sort.Insertion
Data.Array.Mutable.Sort.Quick
Data.Array.Mutable.Sort.Merge
Data.Array.Mutable.Sort.Cilk
build-depends: primitive
, deepseq
, linear-base
, monad-par
hs-source-dirs: src
ghc-options: -O2
test-suite test-mutable-array
import: base
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
build-depends: mutable-array
, linear-base
, monad-par
, tasty
, tasty-quickcheck
benchmark bench-mutable-array
import: base
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: Bench.hs
other-modules: Measure
build-depends: mutable-array
, criterion
, random
, deepseq
, split
, time
, linear-base
, monad-par
ghc-options: -O2 -threaded "-with-rtsopts=-N"