summaryrefslogtreecommitdiff
path: root/package.yaml
blob: 56d6dc3bd1bfbf840d88f0b53ad9ea537b1f7d5c (plain)
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: dedumi

dependencies:
  - base
  - fusion-plugin
  - streaming-commons
  - cuckoo
  - microlens-th
  - microlens
  - bytestring
  - streamly-bytestring
  - streamly-core
  - ghc-prim
  - optparse-generic

executables:
  dedumi:
    main: dedumi.hs
    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:
    main: test.hs
    dependencies:
      - QuickCheck
      - temporary
    other-modules:
      - Data.FastQ

  bench:
    main: bench.hs
    dependencies:
      - QuickCheck
      - criterion
      - temporary
      - text
    other-modules:
      - Data.FastQ
      - Dedumi