b16fad1031
Former-commit-id: f7a8f5ecab5532796ca4462acc1214f5392fb6ae Former-commit-id: 0f85a545eef0467ae1d0129cdf8d992dbbb80072 [formerly 74524eb303c5ac0d8d55fe3219fb867c8104df71] [formerly 262d4dd258888853b8ca2fd24955dd26b4d78701 [formerly 3439945b19ac44d5b06e99bc35aab84155f1c48a [formerly 14d1035d3ec94627c06b8450bf2a582410f48b94] [formerly 14d1035d3ec94627c06b8450bf2a582410f48b94 [formerly 14d1035d3ec94627c06b8450bf2a582410f48b94 [formerly 962f5ddfa909bf4241f29de46a72df64ef3992ec]]]]] Former-commit-id: 73fae6474844a1512bb7eb792058194530175d92 [formerly e5d0dc67369d4f7b277734df6bc69d95cdaae79f] Former-commit-id: 58eacf41730f8f218e2a239d1407fcef512fa95e Former-commit-id: 8ad509aba4c928c1a9c41d98b66e061283a0f460 Former-commit-id: 5a3a90ac30ab3676d63a82e81c3a7e3b459b1a82 Former-commit-id: 24385ec4b9f31817ae7d33362ca609fe838324b7 [formerly f17473045c7135f4d8b91b2a7faaf42e37a78b55] Former-commit-id: e6b3cf86c980bde897cbae481443f344705fee97
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
|
|
|
|
default-language: Haskell2010
|
|
|
|
executable wstunnel
|
|
hs-source-dirs: app
|
|
main-is: Main.hs
|
|
default-extensions: NoImplicitPrelude, ScopedTypeVariables, BangPatterns, RecordWildCards
|
|
ghc-options: -threaded
|
|
-O3
|
|
-rtsopts "-with-rtsopts=-N"
|
|
-- ld-options: -static
|
|
build-depends: base
|
|
, bytestring
|
|
, classy-prelude
|
|
, cmdargs
|
|
, hslogger
|
|
, text >= 1.2.2.1
|
|
, wstunnel
|
|
|
|
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
|