-
Notifications
You must be signed in to change notification settings - Fork 0
/
bench.cabal
42 lines (38 loc) · 1.03 KB
/
bench.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
name: bench
version: 0
build-type: Simple
cabal-version: >=1.10
library
build-depends: base
default-language: Haskell2010
benchmark time
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -Wall -O2 -rtsopts
main-is: Time.hs
build-depends: base
, directory, scientific
, ghc-prim
, criterion
, deepseq
executable report
default-language: Haskell2010
ghc-options: -Wall -O2 -rtsopts
main-is: Report.hs
build-depends: base
, bytestring, directory
, vector
, ghc-prim
, criterion
, deepseq
, containers
, csv
test-suite space
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -O2
main-is: Space.hs
build-depends: base
, weigh
, deepseq
, random