forked from charleso/haskell-course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCourse.cabal
More file actions
49 lines (45 loc) · 1.55 KB
/
Course.cabal
File metadata and controls
49 lines (45 loc) · 1.55 KB
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
Name: HaskellCourse
Version: 0.0.3
Author: Tony Morris <tmorris@tmorris.net>
Maintainer: Tony Morris
Synopsis: Source code for a functional programming course
Category: Education
Description: Source code for a course in functional programming using Haskell
Cabal-version: >= 1.2
Build-Type: Simple
Flag small_base
Description: Choose the new, split-up base package.
Library
Build-Depends: base >= 4,
split,
containers,
array,
directory,
filepath,
HUnit,
QuickCheck,
test-framework,
test-framework-hunit,
test-framework-quickcheck2
GHC-Options: -Wall
-fno-warn-orphans
-fno-warn-type-defaults
-fno-warn-name-shadowing
-fno-warn-unused-do-bind
Exposed-Modules: Answer.Replace
Course
L01.Optional
L01.Validation
L02.List
L03.Person
L03.Parser
L04.Fluffy
L04.Misty
L04.Tests
L05.Testing
L06.JsonValue
L06.MoreParser
L06.JsonParser
L07.Anagrams
L08.FastAnagrams
L09.EditDistance