-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.yaml
More file actions
49 lines (42 loc) · 795 Bytes
/
package.yaml
File metadata and controls
49 lines (42 loc) · 795 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: mastermind
version: 2022.0.0.0
github: "fpclass/mastermind"
author: "Michael B. Gale"
maintainer: "michael@fpclass.online"
copyright: "Copyright 2022 Michael B. Gale"
license: OtherLicense
extra-source-files:
- README.md
dependencies:
- base
ghc-options:
- -Wall
library:
source-dirs: src
executables:
mastermind:
source-dirs: exe
main: Main.hs
dependencies:
- mastermind
- random
tests:
mastermind-tests:
source-dirs: test
main: Spec.hs
ghc-options:
- -threaded
dependencies:
- mastermind
- tasty
- tasty-hedgehog
- tasty-hunit
- tasty-ant-xml
- hedgehog
benchmarks:
mastermind-benchmark:
source-dirs: bench
main: Main.hs
dependencies:
- mastermind
- criterion