5b152ad99f
Former-commit-id: fe7931a137877131be0cb6b4ac199bf5496595f0 Former-commit-id: 7fb3cd78bea5a3a32e6985e520d0e421761e7d3f [formerly 03bfbe7e9089a9cba6640d181afcc047015409ed] [formerly d416b3b6ac3cb913d7ab3458751b3a30055597aa [formerly b014bab246971877d16bb3e8c17d574963d0895a [formerly b014bab246971877d16bb3e8c17d574963d0895a [formerly b014bab246971877d16bb3e8c17d574963d0895a [formerly a7943c24ae097faff115a31d7ce4edd3288b02e4]]]]] Former-commit-id: 06859f28a16cd8688fbfcfe11a282b44bad9d80b [formerly 749b4cdf6bb72b8ec19ba5f2a26548b58f45effb] Former-commit-id: 50ffd10f9893a802f0c94f846ac96116e657240a Former-commit-id: b73912cf8bf61a6f41f830d7442a1ea1e96fbc91 Former-commit-id: 8d1f6e18acc1c6066ff6bbb7a5e993e0ec989e84 Former-commit-id: db4d1219cc0948d94b6870e94cbbf7d3db0ec942 [formerly fe3a3843d756b4ac5bb275740cf750cbcd94850d] Former-commit-id: f9424ba8d27baa2e2b03eae29459701b80255c09
68 lines
2.2 KiB
Text
68 lines
2.2 KiB
Text
name: wstunnel
|
|
version: 0.1.0.0
|
|
synopsis: Initial project template from stack
|
|
description: Please see README.md
|
|
homepage: https://github.com/githubuser/wstunnel#readme
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Author name here
|
|
maintainer: example@example.com
|
|
copyright: 2016 Author name here
|
|
category: Web
|
|
build-type: Simple
|
|
-- extra-source-files:
|
|
cabal-version: >=1.10
|
|
|
|
library
|
|
hs-source-dirs: src
|
|
exposed-modules: Tunnel, Protocols, Types, Logger, Socks5, Credentials, HttpProxy
|
|
default-extensions: NoImplicitPrelude, ScopedTypeVariables, BangPatterns, RecordWildCards
|
|
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 >= 0.12.4.0
|
|
|
|
default-language: Haskell2010
|
|
|
|
test-suite wstunnel-test
|
|
type: exitcode-stdio-1.0
|
|
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
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/githubuser/wstunnel
|
|
|
|
executable wstunnel
|
|
hs-source-dirs: app
|
|
main-is: Main.hs
|
|
default-extensions: NoImplicitPrelude, ScopedTypeVariables, BangPatterns, RecordWildCards
|
|
ghc-options: -threaded
|
|
-O3
|
|
-rtsopts "-with-rtsopts=-N"
|
|
build-depends: base
|
|
, bytestring
|
|
, classy-prelude
|
|
, cmdargs
|
|
, hslogger
|
|
, text >= 1.2.2.1
|
|
, async
|
|
, wstunnel
|
|
|
|
default-language: Haskell2010
|