72e6b0df4f
Former-commit-id: 9da3659c692e0a411b6c1a4e01d3e6acf42e789c Former-commit-id: 52902924efe168ab644b9f0a1894b8ce60872e4d [formerly 2f3923fc54b292663a0456bd453d72f467181b55] [formerly 59aa6493e7bdf13accf6d4ae2acc66f6c39b297f [formerly ec7c1c8387be32c2e4de51f7498605a722ce8e14 [formerly ec7c1c8387be32c2e4de51f7498605a722ce8e14 [formerly ec7c1c8387be32c2e4de51f7498605a722ce8e14 [formerly d4c4e115e15071d4adfa914e3542611da6a5754a]]]]] Former-commit-id: 3025025ab24a7d61304753504572c1df807fc372 [formerly b0fd54d1f164ae84800082ef0f9ad537a71af162] Former-commit-id: e765736072b33d18f0b1fa2768d5d29f871f2ddc Former-commit-id: d5bacf2c046c3672dc1629ea57f0b9cc332011e7 Former-commit-id: e5d3ec2e270e92b2c45bc89d2c90e0d2b051cef9 Former-commit-id: 5508adcb7fdbbadf5e74dc3d7f9bbe20f104f7ab [formerly 08a527777c00a365d0bebaa36576e6dc4e682692] Former-commit-id: c61dd27ed001e26a7c4ada1887a2bcf25c6ec74c
68 lines
2.3 KiB
Text
68 lines
2.3 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 -qb -qg"
|
|
build-depends: base
|
|
, bytestring
|
|
, classy-prelude
|
|
, cmdargs
|
|
, hslogger
|
|
, text >= 1.2.2.1
|
|
, async
|
|
, wstunnel
|
|
|
|
default-language: Haskell2010
|