forked from stacktracehq/cis194-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stacktrace-cis194.cabal
79 lines (77 loc) · 1.62 KB
/
stacktrace-cis194.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
name: stacktrace-cis194
version: 0.1.0.0
synopsis: Resources for working through CIS194 together
homepage: https://github.com/stacktracehq/cosmos/tree/master/training/CIS194
license: BSD3
license-file: LICENSE
author: Stacktrace
maintainer: [email protected]
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules:
Week01.CreditCardValidator
Week01.TowersOfHanoi
Week02.Log
Week02.LogAnalysis
Week03.Golf
Week04.Soln
Week05.Calc
Week05.ExprT
Week05.Parser
Week05.StackVM
Week06.Fibonacci
Week07.Buffer
Week07.Editor
Week07.Sized
Week07.JoinList
Week07.Scrabble
Week08.Party
Week08.Employee
Week10.AParser
Week11.AParser
Week11.SExpr
Week12.Risk
ghc-options:
-Wall
build-depends:
base >=4.10 && <5,
containers,
mtl,
MonadRandom
hs-source-dirs:
src
default-language:
Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is:
Spec.hs
other-modules:
Week01.CreditCardValidatorSpec
Week02.LogAnalysisSpec
Week03.GolfSpec
Week04.SolnSpec
Week05.CalcSpec
Week06.FibonacciSpec
Week07.JoinListSpec
Week08.PartySpec
Week10.AParserSpec
Week11.SExprSpec
hs-source-dirs:
test
default-extensions:
OverloadedStrings
ghc-options:
-Wall
-fno-warn-type-defaults
build-depends:
base >=4.10 && <5,
containers,
hedgehog,
hspec,
hw-hspec-hedgehog,
stacktrace-cis194
default-language:
Haskell2010