1e7582827a
Former-commit-id: 9b2e246a0934e5b1af6d47b3f95529f8e9d029c5 Former-commit-id: 1bb6d5bd0dc21c0caae6ae08c80399cfddaa6938 [formerly 82f48597be325e2c7a6748a45f8275ae79e7ae50] [formerly ab81a7633f829913a53fddd314a1972093a89899 [formerly 956f0ea5246bc6cb4d95f2c71ed488e2b337c56e [formerly 956f0ea5246bc6cb4d95f2c71ed488e2b337c56e [formerly 956f0ea5246bc6cb4d95f2c71ed488e2b337c56e [formerly aa7bb07d9e7ca46544cf2f37589f9959e9db5adf]]]]] Former-commit-id: 6a2a62093be065e7b2008fe1a873266f0a4ce09d [formerly 0b3cf25c899586f1f20a7d1c2f378d5a6c7fae23] Former-commit-id: 72a1df8e07c0662f78f5337bf8a7eba7ff402fae Former-commit-id: d9058d5a8d3e085f5b346671817bd17a2183592c Former-commit-id: 916cbf9612809b02f32ae5c4c252bdb2fd5a9039 Former-commit-id: c4e9ea531c4bb40333216a651bcccbf4f77bb14f [formerly 132dc4c7685767ae38beeb60c3f25fd33669c972] Former-commit-id: 923eb1c06984e417a534463f1ab8dcfcfa5a107d
81 lines
2.8 KiB
Text
81 lines
2.8 KiB
Text
name: wstunnel
|
|
version: 0.4.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
|
|
, 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
|