-
Notifications
You must be signed in to change notification settings - Fork 11
/
bench.cabal
36 lines (33 loc) · 912 Bytes
/
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
name: bench
version: 0
build-type: Simple
cabal-version: >=1.10
library
build-depends: base
default-language: Haskell2010
test-suite space
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -O2
main-is: Space.hs
build-depends: base
, weigh
, deepseq
, containers
, unordered-containers
, bytestring-trie
, random
benchmark time
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -Wall -O2 -rtsopts
main-is: Time.hs
build-depends: base
, bytestring
, ghc-prim
, criterion
, deepseq
, containers
, unordered-containers
, bytestring-trie
, random