summaryrefslogtreecommitdiff
path: root/package.yaml
blob: 398c3258a47e7dcea5e34af04da3da3498f1b590 (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
43
44
45
name: dedumi
licence: BSD3
version: 0.1

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

ghc-options: [-O2, -fdicts-strict, -fspec-constr-recursive=16, -fmax-worker-args=16, -fplugin=Fusion.Plugin, -Wall, -Wno-name-shadowing]

executables:
  dedumi:
    main: dedumi.hs
    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