-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.yaml
More file actions
43 lines (37 loc) · 795 Bytes
/
package.yaml
File metadata and controls
43 lines (37 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
name: mars-rover
version: 0.1.0.0
license: MIT
author: "José Vte. Calderón"
maintainer: "jvcprod@hotmail.com"
copyright: "2019 José Vte. Calderón"
extra-source-files:
- README.md
- LICENSE
description: Please see the README on Bitbucket at <https://bitbucket.org/jvcal/mars-rover/src#readme>
dependencies:
- base >=4.10 && <4.11
- hspec
- QuickCheck
- regex-pcre
- split
library:
source-dirs:
- src
exposed-modules:
- Data
- MarsRover
executables:
mars-rover:
main: Main.hs
source-dirs:
- src
tests:
data-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- mars-rover