-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
40 lines (35 loc) · 804 Bytes
/
package.yaml
File metadata and controls
40 lines (35 loc) · 804 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
name: ChatServer
version: 0.1.0.0
github: "seckujdivad/ChatServer"
author: "David Juckes"
extra-source-files:
- README.md
description: Please see the README on GitHub at <https://github.com/seckujdivad/ChatServer#readme>
dependencies:
- base >= 4.7 && < 5
- network >= 3.1.1 && < 3.1.2
- bytestring
- stm >= 2.5
library:
source-dirs: src
executables:
ChatServer-Client:
main: Client.hs
source-dirs: app/client
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -main-is Client
dependencies:
- ChatServer
ChatServer-Server:
main: Server.hs
source-dirs: app/server
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -main-is Server
dependencies:
- ChatServer