-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreamly-text.cabal
51 lines (48 loc) · 1.64 KB
/
streamly-text.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
cabal-version: 2.4
name: streamly-text
version: 0.1.0.0
license: BSD-3-Clause
license-file: LICENSE
author: Composewell Technologies
maintainer: [email protected]
extra-source-files: CHANGELOG.md
extra-doc-files: README.md
common compile-options
default-language: Haskell2010
ghc-options: -Weverything
-Wno-implicit-prelude
-Wno-missing-deriving-strategies
-Wno-missing-exported-signatures
-Wno-missing-import-lists
-Wno-missing-local-signatures
-Wno-missing-safe-haskell-mode
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-monomorphism-restriction
-Wno-prepositive-qualified-module
-Wno-unsafe
-Rghc-timing
library
import: compile-options
exposed-modules: Streamly.External.Text
, Streamly.External.Text.Lazy
build-depends: base >=4.7 && <5
, streamly-core >=0.2.0 && <0.3.1
, text >=2.0 && <2.1.2
hs-source-dirs: src
default-language: Haskell2010
test-suite test
import: compile-options
hs-source-dirs: test
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends:
base >=4.7 && <5
, text
, hspec
, quickcheck-instances
, random
, streamly-core
, streamly-text
, temporary
default-language: Haskell2010