diff options
author | Justin Bedo <cu@cua0.org> | 2024-03-19 16:03:38 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2024-03-20 16:04:24 +1100 |
commit | afba6bce9c2e8ff77da2848f57f443088861db5d (patch) | |
tree | 9242fb357da4ff6ed9684d25ff150f4da1981360 /package.yaml | |
parent | b7dcf3b7452e29fc4366852fe8ff6e3fa94ae555 (diff) |
add benchmarking
Diffstat (limited to 'package.yaml')
-rw-r--r-- | package.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package.yaml b/package.yaml index 515b9ff..56d6dc3 100644 --- a/package.yaml +++ b/package.yaml @@ -19,6 +19,7 @@ executables: ghc-options: [-O2, -fdicts-strict, -fspec-constr-recursive=16, -fmax-worker-args=16, -fplugin=Fusion.Plugin, -Wall, -Wno-name-shadowing] other-modules: - Data.FastQ + - Dedumi tests: tests: @@ -28,3 +29,14 @@ tests: - temporary other-modules: - Data.FastQ + + bench: + main: bench.hs + dependencies: + - QuickCheck + - criterion + - temporary + - text + other-modules: + - Data.FastQ + - Dedumi |