601cb3fc79
Former-commit-id: 5ecb853895c6adaebde238d735dd391f67483e43 Former-commit-id: 3c0cc831e4edbea5dc67dd60ee2e13b4e758ebe4 [formerly 8f1208a4f057ba522c9f31e9a268b6a3fcf8c567] [formerly e2ebca570be3348a80b5789d06686c92e92f037d [formerly 69a9bcb6653946a190af43da53ba7a2e6610a694 [formerly 69a9bcb6653946a190af43da53ba7a2e6610a694 [formerly 69a9bcb6653946a190af43da53ba7a2e6610a694 [formerly 548997d17fb992cd8053304f50c24e041acea9b1]]]]] Former-commit-id: 9dc0b048b9fdb9dd0d04482ffd107b5ac257d2b0 [formerly b89936db0a38e08c1038f5e1505a24778f52e494] Former-commit-id: 3da29e409afa39fd613b1d7db69652704170a3d0 Former-commit-id: 1c7d265f3ab490c3a1f23e50678259152943bb6b Former-commit-id: 99772d0672c2ceec7808898bb14197f21eef0ff3 Former-commit-id: 47899e0f1cd812b7bb052be75577c22266aac72c [formerly b69a7c3697eadb9098a4168dbc17047d84346aca] Former-commit-id: 820f82156ee8768fd51d534352696b4dfeddd098
78 lines
2.7 KiB
Text
78 lines
2.7 KiB
Text
name: wstunnel
|
|
version: 0.3.1.0
|
|
synopsis: Tunneling program over websocket protocol
|
|
description: For more information regarding wstunnel, please refer to README.md
|
|
homepage: https://github.com/githubuser/wstunnel#readme
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Erèbe
|
|
maintainer: github@erebe.eu
|
|
copyright: 2021 Erèbe
|
|
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 >= 4.5 && < 5
|
|
, 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
|
|
, iproute
|
|
|
|
default-language: Haskell2010
|
|
|
|
test-suite wstunnel-test
|
|
type: exitcode-stdio-1.0
|
|
hs-source-dirs: test
|
|
main-is: Spec.hs
|
|
default-extensions: NoImplicitPrelude, ScopedTypeVariables, BangPatterns, RecordWildCards
|
|
build-depends: base >= 4.5 && < 5
|
|
, async
|
|
, text >= 1.2.2.1
|
|
, classy-prelude
|
|
, bytestring
|
|
, network
|
|
, network-conduit-tls
|
|
, streaming-commons
|
|
, wstunnel
|
|
, hspec
|
|
, binary
|
|
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 >= 4.5 && < 5
|
|
, bytestring
|
|
, classy-prelude
|
|
, cmdargs
|
|
, hslogger
|
|
, text >= 1.2.2.1
|
|
, async
|
|
, wstunnel
|
|
|
|
default-language: Haskell2010
|