forked from tonymorris/fp-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourse.cabal
60 lines (54 loc) · 1.88 KB
/
course.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
Name: course
Version: 0.0.5
License: BSD3
License-File: LICENSE
Author: Tony Morris <[email protected]>
Maintainer: Tony Morris
Homepage: https://github.com/tonymorris/course
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
Source-Repository head
Type: git
Location: [email protected]:tonymorris/course.git
Flag small_base
Description: Choose the new, split-up base package.
Library
Build-Depends: base < 5 && >= 4
, HUnit
, containers
, array
, QuickCheck
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
GHC-Options: -Wall
-fno-warn-unused-imports
-fno-warn-unused-binds
-fno-warn-unused-do-bind
-fno-warn-type-defaults
Hs-Source-Dirs: src
Exposed-Modules: Course
L01.Optional
L01.Validation
L02.List
L03.Fuunctor
L03.Moonad
L03.State
L03.StateT
L04.ListZipper
L04.Testing
L05.Person
L05.Parser
L06.JsonValue
L06.MoreParser
L06.JsonParser
L07.Anagrams
L07.FastAnagrams
L08.BKTree
L08.EditDistance
L08.MetricSpace
L09.Compose
L10.Cheque