-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
55 lines (53 loc) · 1.03 KB
/
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
49
50
51
52
53
54
55
name: ProjectEuler
version: 0.1.0.0
author: Dan Seminara
maintainer: semi225599@gmail.com
license: UnspecifiedLicense
default-extensions:
- DeriveFoldable
- DeriveFunctor
- DeriveTraversable
- LambdaCase
- MultiWayIf
- TupleSections
dependencies:
- ansi-terminal
- arithmoi
- array
- base >= 4.7 && < 5
- containers
- data-ordlist
- deepseq
- digits
- directory
- FindBin
- hashable
- integer-logarithms
- linear
- MissingH
- parallel
- random
- regex-compat
- split
- template-haskell
- unordered-containers
- vector
- vector-algorithms
executables:
ProjectEuler:
source-dirs: src
main: Main.hs
ghc-options:
- -O2
# - -Wall
# - -Wcompat
# - -Wincomplete-record-updates
# - -Wincomplete-uni-patterns
# - -Wredundant-constraints
# - -Wnoncanonical-monad-instances
build-type: Custom
custom-setup:
dependencies:
- base >=4.9 && <5
- Cabal
- process