-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.yaml
More file actions
48 lines (42 loc) · 957 Bytes
/
package.yaml
File metadata and controls
48 lines (42 loc) · 957 Bytes
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
name: intcode
version: 0.4.7
github: "TotallyNotChase/intcode"
license: MIT
author: "Chase"
maintainer: "totallynotchase42@gmail.com"
copyright: "TotallyNotChase"
extra-source-files:
- README.md
description: Please see the README on GitHub at <https://github.com/TotallyNotChase/intcode#readme>
dependencies:
- base >= 4.7 && < 5
- array
- containers
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-uni-patterns
- -Wincomplete-record-updates
- -Wredundant-constraints
- -Wmissing-export-lists
- -Wpartial-fields
- -Wmissing-deriving-strategies
library:
source-dirs: src
exposed-modules:
- IntCode
- IntCode.IO
- IntCode.ST
ghc-options:
- -O3
tests:
intcode-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- intcode