-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
49 lines (43 loc) · 885 Bytes
/
package.yaml
File metadata and controls
49 lines (43 loc) · 885 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
49
---
name: codeworld-tasks
version: 0.1.0.0
github: "fmidue/codeworld-tasks"
license: BSD-3-Clause
author: "Patrick Ritzenfeld"
maintainer: "patrick.ritzenfeld@uni-due.de"
copyright: "2024 Patrick Ritzenfeld"
extra-source-files:
- README.md
description: Please see the README on GitHub at <https://github.com/fmidue/codeworld-tasks#readme>
dependencies:
- base >= 4.11 && < 5
- containers
- data-reify
- deepseq
- extra
- mtl
- text
- uniplate
ghc-options:
- -Wall
- -Werror
- -Wcompat
- -Widentities
- -Wincomplete-uni-patterns
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
exposed-modules:
- CodeWorld
- CodeWorld.Test
tests:
codeworld-tasks-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- codeworld-tasks