0082233b37
Former-commit-id: 56b68fddcac5749b26fec3c768a86098df055f9c Former-commit-id: 9d25dd888f0e4f98bb776d9a57de00e5b026ee99 [formerly aa74f4eee74432b97505059ae6eddc80763c3aa3] [formerly 1bfa70c79e5a173f2f36c47e6d9711dc52fc0aab [formerly 9cc800323b2de9486fcfcfa8a7744a1b8daf04d5 [formerly 9cc800323b2de9486fcfcfa8a7744a1b8daf04d5 [formerly 9cc800323b2de9486fcfcfa8a7744a1b8daf04d5 [formerly e95792d88fcc054c78d8a372b46ad64eeff0d890]]]]] Former-commit-id: c0767a388f7a7bd2e2c52ab7916994c7460b4e85 [formerly 2b5fdd6ddfda0c00a10e001dc467b27f37f05cd8] Former-commit-id: 7d352fdea4a986c28b28643d616caa14f009e8d6 Former-commit-id: 8fae7710c6fc02b0419a4e1d610171f3fbdd42ea Former-commit-id: 4a0310791b8cfe03287a143f303824d32b897830 Former-commit-id: 899c40edc5ef30da6cb1eb7879fbbd7bff650f31 [formerly b259ec9bed7849c2db3d0c15c03f7bc3dbc1859b] Former-commit-id: abd6fe0cb40b92349a5efd580bbfc65c7ff86e82
81 lines
2.8 KiB
Text
81 lines
2.8 KiB
Text
name: wstunnel
|
|
version: 0.5.0.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 >= 3.1.2
|
|
, network-conduit-tls
|
|
, streaming-commons
|
|
, text >= 1.2.2.1
|
|
, unordered-containers
|
|
, websockets >= 0.12.4.0
|
|
, iproute
|
|
, case-insensitive
|
|
|
|
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
|
|
, case-insensitive
|
|
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
|
|
, case-insensitive
|
|
|
|
default-language: Haskell2010
|