-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathimj-server.cabal
72 lines (68 loc) · 2.71 KB
/
imj-server.cabal
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
64
65
66
67
68
69
70
71
72
name: imj-server
version: 0.1.0.3
Category: Networking
Synopsis: A library factorizing common server aspects.
Description: A library handling client connections, communication wuth clients.
homepage: https://github.com/OlivierSohn/hamazed/blob/master/imj-server//README.md
bug-reports: https://github.com/OlivierSohn/hamazed/issues/
license: BSD3
license-file: LICENSE
author: Olivier Sohn
maintainer: [email protected]
copyright: 2017 - 2018 Olivier Sohn
build-type: Simple
extra-source-files: README.md CHANGELOG.md
cabal-version: >=1.10
Tested-With: GHC == 8.2.2, GHC == 8.4.3
library
hs-source-dirs: src
other-modules:
exposed-modules: Imj.ClientView.Internal.Types
, Imj.ClientView.Types
, Imj.Categorized
, Imj.Music.Instruments
, Imj.Server
, Imj.Server.Class
, Imj.Server.Color
, Imj.Server.Command
, Imj.Server.Connection
, Imj.Server.Internal.Types
, Imj.Server.Log
, Imj.Server.Run
, Imj.Server.Types
, Imj.ServerView
, Imj.ServerView.Types
build-depends: base >= 4.9 && < 4.16
, attoparsec ==0.13.*
, binary ==0.8.*
, containers >= 0.5 && < 0.7
, deepseq ==1.4.*
, imj-base ==0.1.*
, imj-audio ==0.1.*
, imj-music ==0.1.*
, imj-prelude ==0.1.*
, imj-time ==0.1.*
, mtl >= 2.2.1 && < 2.3
, optparse-applicative >=0.14 && < 0.17
, strict-concurrency ==0.2.*
, text >=1.2.3 && < 1.3
, unliftio ==0.2.*
, unliftio-core >=0.1 && < 0.3
, websockets ==0.12.*
default-language: Haskell2010
test-suite imj-server-test
type: exitcode-stdio-1.0
hs-source-dirs: test
other-modules: Test.Imj.ParseCommand
main-is: Spec.hs
build-depends: base >= 4.9 && < 4.16
, attoparsec ==0.13.*
, deepseq ==1.4.*
, imj-base ==0.1.*
, imj-prelude ==0.1.*
, imj-server
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/OlivierSohn/hamazed/
subdir: imj-server