-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
48 lines (43 loc) · 950 Bytes
/
package.yaml
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
spec-version: 0.30.0
name: exhMonad
author: Patrick D. Elliott
version: 0.0.0
maintainer: patrick.d.elliott@gmail.com
license: BSD3
build-type: Simple
dependencies:
- { name: "base", version: '^>=4.14.1.0' }
- { name: "containers" }
- { name: "parsec", version: '==3.1.14.0' }
- { name: "table-layout", version: '==0.9.1.0'}
- { name: "recursion-schemes", version: '==5.1.3'}
default-extensions:
- GADTs
- StandaloneDeriving
- ScopedTypeVariables
- RankNTypes
- QuantifiedConstraints
- TypeApplications
- TypeOperators
- MultiParamTypeClasses
- ConstraintKinds
- DataKinds
- PolyKinds
- KindSignatures
- FlexibleInstances
- FlexibleContexts
library:
source-dirs: src
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
executable:
source-dirs: app
main: Main.hs
ghc-options:
- -threaded
dependencies:
- exhMonad