-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreaming-fusion.cabal
59 lines (52 loc) · 1.78 KB
/
streaming-fusion.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
cabal-version: 2.0
-- Initial package description 'benchtest.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: streaming-fusion
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: BSD3
license-file: LICENSE
author: Pranay Sashank
maintainer: [email protected]
-- copyright:
category: Testing
build-type: Simple
extra-source-files: CHANGELOG.md
src/inline.hs
library
hs-source-dirs: src
exposed-modules: Streaming
StreamingD
StreamingK
Of
Experimental
default-language: Haskell2010
ghc-options: -Wall -fspec-constr-recursive=10
-Wcompat
-Wunrecognised-warning-flags
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wnoncanonical-monad-instances
-Wnoncanonical-monadfail-instances
build-depends: base >= 4.8 && < 5
, ghc-prim
, transformers
benchmark benchmarks
type: exitcode-stdio-1.0
main-is: Main.hs
--other-modules:
-- other-extensions:
ghc-options: -O2
build-depends: base >= 4.8 && < 5
, hspec
, hspec-expectations
, criterion
, streaming
, streamly == 0.6.0
, streaming-fusion
hs-source-dirs: app
default-language: Haskell2010