-
Notifications
You must be signed in to change notification settings - Fork 17
/
shadowsocks.cabal
87 lines (82 loc) · 3.16 KB
/
shadowsocks.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
name: shadowsocks
version: 1.20180408
synopsis: A fast SOCKS5 proxy that help you get through firewalls
description:
Shadowsocks implemented in Haskell. Original python version: <https://github.com/clowwindy/shadowsocks>
homepage: https://github.com/rnons/shadowsocks-haskell
bug-reports: https://github.com/rnons/shadowsocks-haskell/issues
license: MIT
license-file: LICENSE
author: rnons
maintainer: remotenonsense@gmail.com
category: Web
build-type: Simple
cabal-version: 1.18
tested-with: GHC == 8.2.2
data-files: config.json
extra-doc-files: CHANGELOG.md
source-repository head
type: git
location: git://github.com/rnons/shadowsocks-haskell.git
library
hs-source-dirs: src
exposed-modules: Shadowsocks.Encrypt,
Shadowsocks.Util
build-depends: base == 4.*,
aeson >= 0.7,
binary >= 0.7,
bytestring >= 0.9,
conduit >= 1.3,
containers >= 0.5,
cryptohash >= 0.11,
directory,
HsOpenSSL >= 0.11,
iproute >= 1.4,
network >= 2.6,
optparse-applicative >= 0.11,
unordered-containers >= 0.2
default-language: Haskell2010
executable sslocal
hs-source-dirs: app
main-is: local.hs
if os(windows) && arch(x86_64)
ghc-options: -Wall -fno-warn-unused-do-bind
else
ghc-options: -Wall -fno-warn-unused-do-bind -threaded
other-extensions: OverloadedStrings, DeriveGeneric
build-depends: base == 4.*,
shadowsocks,
async >= 2.0,
bytestring >= 0.9,
conduit >= 1.3,
conduit-extra >= 1.3
default-language: Haskell2010
executable ssserver
hs-source-dirs: app
main-is: server.hs
if os(windows) && arch(x86_64)
ghc-options: -Wall -fno-warn-unused-do-bind
else
ghc-options: -Wall -fno-warn-unused-do-bind -threaded
other-extensions: OverloadedStrings, DeriveGeneric
build-depends: base == 4.*,
shadowsocks,
async >= 2.0,
bytestring >= 0.9,
conduit >= 1.3,
conduit-extra >= 1.3,
network >= 2.6,
streaming-commons >= 0.1.11
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: test.hs
ghc-options: -Wall -fno-warn-unused-do-bind
build-depends: base == 4.*,
binary >= 0.7,
bytestring >= 0.9,
containers >= 0.5,
cryptohash >= 0.11,
process >= 1.1,
HUnit >= 1.2
default-language: Haskell2010