-
Notifications
You must be signed in to change notification settings - Fork 0
/
bench-report.cabal
65 lines (57 loc) · 2.5 KB
/
bench-report.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
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: 2.2
name: bench-report
version: 0.0.0
synopsis: Benchmark report generation
description: Benchmark reporting application is not included in the overall
cabal project so that the dependencies of both can remain independent.
Benchmark reporting has a lot of dependencies that usually lag behind
when new GHC releases arrive.
extra-doc-files:
README.md
flag no-charts
description: Don't generate svg charts
manual: True
default: False
common compile-options
ghc-options: -Weverything
-Wno-implicit-prelude
-Wno-prepositive-qualified-module
-Wno-missing-import-lists
-Wno-missing-safe-haskell-mode
-Wno-unsafe
-Wno-missing-deriving-strategies
-Wno-monomorphism-restriction
-Wno-missing-local-signatures
-Wno-missed-specialisations
-Wno-all-missed-specialisations
default-extensions: TemplateHaskell
, QuasiQuotes
default-language: Haskell2010
library
import: compile-options
if flag(no-charts)
cpp-options: -DNO_CHARTS
exposed-modules: Utils
, BenchRunner
, TestRunner
, BuildLib
, BenchReport
build-depends: base >= 4.12 && < 4.21
, exceptions >= 0.8.0 && < 0.11
, template-haskell >= 2.14 && < 2.23
, filepath >= 1.2 && < 1.6
, containers >= 0.6.0 && < 0.8
, transformers >= 0.2 && < 0.7
, directory >= 1.2 && < 1.4
, optparse-applicative >= 0.14.2 && < 0.19
, optparse-simple >= 0.1.0 && < 0.2
-- Managed Dependencies
, streamly-core >= 0.1.0 && < 0.4
, streamly-process >= 0.1 && < 0.4
, bench-show == 0.3.2.*
-- The following dependencies are not released on
-- hackage. Make sure the env has appropriate versions of
-- these libs when importing bench-report
, streamly-shell
, streamly-coreutils
hs-source-dirs: lib