forked from mbbx6spp/effpee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
effpee.cabal
92 lines (87 loc) · 1.97 KB
/
effpee.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
cabal-version: 2.2
name: effpee
version: 0.1.4
license: AGPL-3.0-only
license-file: etc/LICENSE-AGPLv3.txt
maintainer: Susan Potter
synopsis: Exercises for teaching typed functional programming
category: Education
description: Exercises for teaching typed functional programming
homepage: https://github.com/mbbx6spp/effpee
bug-reports: https://github.com/mbbx6spp/effpee/issues
build-type: Simple
tested-with: GHC == 8.4.4
extra-source-files: CHANGELOG.org
-- source-repository HEAD
-- location: ./.
common base
build-depends:
base < 5 && >= 4
, containers >= 0.4
, array >= 0.4
, text
ghc-options:
-Wall
-Wno-dodgy-exports
-fwarn-incomplete-uni-patterns
-fno-warn-unused-binds
-fno-warn-unused-do-bind
-fno-warn-unused-imports
-fno-warn-type-defaults
-ferror-spans
default-extensions:
NoImplicitPrelude
InstanceSigs
OverloadedStrings
ScopedTypeVariables
default-language:
Haskell2010
common tests
other-modules:
Effpee.Test
Effpee.ADTTest
Effpee.USMoneyTest
Effpee.OptionTest
Effpee.ManyTest
Effpee.OrTest
Effpee.PairTest
Effpee.DeferredTest
Effpee.FunctorTest
build-depends:
effpee
, base < 5 && >= 4
, text
, HUnit >= 1.5
, hedgehog >= 0.6.1
, tasty >= 1
, tasty-hunit >= 0.9
, tasty-hedgehog >= 0.2
ghc-options:
-threaded
default-extensions:
NoImplicitPrelude
InstanceSigs
OverloadedStrings
ScopedTypeVariables
default-language:
Haskell2010
library
import:
base
hs-source-dirs:
src
exposed-modules:
Effpee
Effpee.ADT
Effpee.USMoney
Effpee.Option
Effpee.Many
Effpee.Or
Effpee.Pair
Effpee.Deferred
Effpee.Functor
test-suite all
import: tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: TastyLoader.hs