-
Notifications
You must be signed in to change notification settings - Fork 52
/
proxypool.cabal
104 lines (95 loc) · 3.42 KB
/
proxypool.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
-- Initial proxypool.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: proxypool
version: 0.1.0.0
synopsis: Stratum to Stratum mining proxy
description: Stratum proxy pool
license: AGPL-3
license-file: LICENSE
author: jpmorgan
maintainer: [email protected]
-- copyright:
category: Network
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
c-sources: scrypt/scrypt.c
cc-options: -Wall -std=c99
include-dirs: include
ghc-options: -Wall -threaded
ghc-prof-options: -auto-all -caf-all -rtsopts
exposed-modules: ProxyPool.Network, ProxyPool.Stratum, ProxyPool.Handlers, ProxyPool.Mining
-- other-extensions:
build-depends: base >= 4.6
, containers >= 0.5
, mtl >= 2.1.2
, transformers >= 0.3.0.0
, network >= 2.4.2.2
, bytestring >= 0.10
, stm >= 2.4.2
, select >= 0.4.0.1
, aeson >= 0.6.2.1
, text >= 1.0.0.1
, unix >= 2.6.0.0
, vector >= 0.10.9.1
, either >= 4.1
, hslogger >= 1.2.3
, cryptohash >= 0.11
, base16-bytestring >= 0.1
, hedis >= 0.6.3
, async >= 2.0.1.5
, time >= 1.1.4
, stm >= 2.4.2
, unordered-containers >= 0.2.3.3
default-language: Haskell2010
executable server
hs-source-dirs: ProxyPool/Server
main-is: Main.hs
ghc-options: -Wall -threaded
ghc-prof-options: -auto-all -caf-all -rtsopts
build-depends: proxypool
, base
, mtl
, transformers
, network
, bytestring
, unix
, hslogger
, text
, hedis
, aeson
, async
default-language: Haskell2010
executable client
hs-source-dirs: ProxyPool/Client
main-is: Main.hs
ghc-options: -Wall
build-depends: proxypool
, base
, mtl
, transformers
, network
, bytestring
, unix
, text
, random
, aeson
default-language: Haskell2010
Test-suite Test
hs-source-dirs: tests
type: exitcode-stdio-1.0
main-is: Test.hs
ghc-options: -Wall
build-depends: proxypool
, tasty >= 0.7
, tasty-hspec >= 0.1
, base
, bytestring
, text
, aeson
, transformers
, cryptohash
, vector
, base16-bytestring
default-language: Haskell2010