-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhs-istatd-client.cabal
69 lines (58 loc) · 1.35 KB
/
hs-istatd-client.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
name: hs-istatd-client
version: 1.0.0.0
license: AllRightsReserved
license-file: LICENSE
author: Imran Hameed
maintainer: [email protected]
category: Network
build-type: Simple
cabal-version: >=1.10
library
exposed-modules:
Imvu.Network.IstatdClient
Imvu.Network.IstatdClient.Types
build-depends:
base >=4.6
, bytestring
, deepseq
, double-conversion
, hashable
, network
, network-bsd
, semigroups
, split
, transformers
, double-conversion
default-language: Haskell2010
ghc-options: -Wall
ghc-options: -Werror
ghc-options: -fwarn-tabs -fwarn-incomplete-uni-patterns
ghc-options: -O2
test-suite alltests
type: exitcode-stdio-1.0
hs-source-dirs: tests .
main-is: alltests.hs
default-language: Haskell2010
ghc-options: -Wall
ghc-options: -Werror
ghc-options: -rtsopts -fwarn-tabs -fwarn-incomplete-uni-patterns
ghc-options: -O2
ghc-options: -threaded
other-modules:
ProtocolEncodeTest
Imvu.Network.IstatdClient
Imvu.Network.IstatdClient.Types
build-depends:
base >=4.6
, bytestring
, deepseq
, hashable
, network
, network-bsd
, semigroups
, split
, transformers
, tasty
, tasty-hunit
, tasty-th
, double-conversion