-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.cabal
62 lines (48 loc) · 1.2 KB
/
example.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
60
61
62
version: 0
name:
example
cabal-version:
>= 1.10
build-type:
Simple
tested-with:
GHC == 8.10.7
source-repository head
type: git
location: [email protected]:moodmosaic/coverage-check-example.git
library
build-depends:
-- GHC 8.0.1 / base-4.9.0.0 (May 2016)
base >= 4.9 && < 5
, array >= 0.5 && < 0.6
, hedgehog >= 1.1 && < 2.0
, QuickCheck >= 2.12 && < 2.15
, random >= 1.2.1 && < 1.3
, test-framework >= 0.8 && < 0.9
, test-framework-quickcheck2 >= 0.3.0.5 && < 0.4
ghc-options:
-Wall
hs-source-dirs:
src
exposed-modules:
-- https://stackoverflow.com/a/72182415
Q72168364
Test.Q72168364.Hedgehog
-- https://stackoverflow.com/a/72182415
Test.Q72168364.QuickCheck
default-language:
Haskell2010
test-suite test
type:
exitcode-stdio-1.0
main-is:
test.hs
ghc-options:
-Wall
hs-source-dirs:
test
build-depends:
example
, base >= 3 && < 5
default-language:
Haskell2010