Maj sock5 proxy

This commit is contained in:
Erèbe 2016-06-20 17:10:48 +02:00
parent e6950ea526
commit a2eac5a595
2 changed files with 80 additions and 19 deletions

View file

@ -16,20 +16,21 @@ cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Tunnel, Protocols, Utils
build-depends: base
, classy-prelude
, bytestring
, async
, unordered-containers
, network
, streaming-commons
, websockets
, network-conduit-tls
, connection
, hslogger
build-depends: async
, base
, base64-bytestring >= 1.0
, binary >= 0.7
, bytestring
, classy-prelude
, connection
, hslogger
, mtl
, network
, network-conduit-tls
, streaming-commons
, text >= 1.2.2.1
, unordered-containers
, websockets
default-language: Haskell2010
@ -38,11 +39,12 @@ executable wstunnel
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, wstunnel
, cmdargs
, classy-prelude
, bytestring
, classy-prelude
, cmdargs
, hslogger
, text >= 1.2.2.1
, wstunnel
default-language: Haskell2010
@ -51,6 +53,7 @@ test-suite wstunnel-test
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, text >= 1.2.2.1
, wstunnel
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010