-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
63 lines (52 loc) · 974 Bytes
/
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
56
57
58
59
60
61
62
63
name: high5-driver
version: 1.1.0
synopsis: Driver application for the Internet High 5 Machine!
maintainer: Noon van der Silk <[email protected]>
license: MIT
category: Development
ghc-options: -Wall -fwarn-tabs
default-extensions:
- OverloadedStrings
- NoImplicitPrelude
dependencies:
- base >= 4.7 && < 5
- aeson
- async
- bytestring
- classy-prelude
- free
- lens
- mtl
- network
- pipes
- pipes-concurrency
- pipes-websockets
- process
- text
- transformers
- websockets
- wuss
- yaml
library:
source-dirs: src
exposed-modules:
- High5.Prelude
- Control.High5.App
- Control.High5.Machine
- Control.High5.Commands
executables:
high5-driver:
ghc-options: -O2 -threaded
main: Main.hs
source-dirs: app
dependencies:
- high5-driver
tests:
test:
cpp-options: -DTEST
main: Spec.hs
source-dirs:
- test
- src
dependencies:
- hspec