d0f14745c8
Former-commit-id: 54343d2cb313f389f8df26f4b72dee851f95f733 Former-commit-id: f707ad755b33550f30fc88258098800ee60381ee [formerly 3893eebd820dbe75b00d8e94600d427a91d8b8d5] [formerly 64a2c64d57138f128993a17a62524fbce7e693e6 [formerly 790e5c67eda9868ec8580ed4472371d9dd3b3228 [formerly 790e5c67eda9868ec8580ed4472371d9dd3b3228 [formerly 97c3299a58912e67e05e0ce71c57a91ecada56b5]] [formerly 790e5c67eda9868ec8580ed4472371d9dd3b3228 [formerly 97c3299a58912e67e05e0ce71c57a91ecada56b5] [formerly 97c3299a58912e67e05e0ce71c57a91ecada56b5 [formerly ded1d659929a985e9fea1a457a7fbf9c3b50904c]]]]] Former-commit-id: 24d1b0931f7be8a0d4093838cb23ef3623b8d5ac [formerly 40c60c049b26a70322271b43b76618cd34cf64e8] Former-commit-id: 81588c0c7d22009146751e4e4178717a81ef59d2 Former-commit-id: e3e88f97551ea7a79853cfbcdf7fe3491b7f5c9b Former-commit-id: 99ba30e6e7261b4e38eb7d94ffaa5119b29bdf7a Former-commit-id: d11687687008bc9692fde83c239ea82abc0a60b4 [formerly 9780ea74e6b3e42f5bc3e0dde1a87c3e17552124] Former-commit-id: d595f7528a567eb8708fa0e3b05887372ccc6fbd
78 lines
2.7 KiB
Text
78 lines
2.7 KiB
Text
name: wstunnel
|
|
version: 0.3.0.1
|
|
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
|