-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathz-benchmarks.cabal
39 lines (34 loc) · 1.19 KB
/
z-benchmarks.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
cabal-version: 2.4
name: Z-Benchmarks
version: 0.1.0.0
maintainer: winter
executable redis-benchmark-z
main-is: redis-bench-z.hs
build-depends: base >=4.12.0.0
, Z-Data >= 0.3
, Z-IO >= 0.3
hs-source-dirs: redis-benchmark/
default-language: Haskell2010
ghc-options: -O2 -threaded -rtsopts -eventlog -with-rtsopts=-N
executable redis-benchmark-base
main-is: redis-bench-base.hs
build-depends: base >=4.12.0.0
, network-run >= 0.2.4
, network
, bytestring >= 0.10
hs-source-dirs: redis-benchmark/
default-language: Haskell2010
ghc-options: -O2 -threaded -rtsopts -eventlog -with-rtsopts=-N
executable json-benchmark
main-is: json-bench.hs
build-depends: base >=4.12.0.0
, criterion
, aeson
, bytestring
, deepseq
, text
, Z-Data >= 0.3
, Z-IO >= 0.3
hs-source-dirs: json-benchmark/
default-language: Haskell2010
ghc-options: -O2