8bd805b0d3
Former-commit-id: fec205291e26e8d64fca5ff753580b1a64592601 Former-commit-id: 6050a5408343c2d07a02cbcbf778ba3148a42126 [formerly 902076332615bb34f38b9c2ed51bcb165aa08fcd] [formerly 3c3c90b0bf53a73818cecf5a8ab8e2d649dad35e [formerly 0bdea96822211a4eb95a90435c66049965e7aff5 [formerly 0bdea96822211a4eb95a90435c66049965e7aff5 [formerly 0bdea96822211a4eb95a90435c66049965e7aff5 [formerly 9ce5c1a09c9945223df26609b9e725b3f93f014e]]]]] Former-commit-id: 1c79ed2bd07cbf476f69b06ed9a134a63dd285cb [formerly 2cc27e84320fdc7245b64515b082f29bd24cf299] Former-commit-id: c213a08c5adfe7857635db8d2b1c0d836a6e1207 Former-commit-id: 86624be4dfa00559808a1ee3d3568a455f99e5e2 Former-commit-id: 8f7937f2320beb2356c8cf8af7241d452cacd3cf Former-commit-id: 4b30c019bfd2c847698cec7c2980e7139e813f24 [formerly ed0aa0b199a4e417c3edfb2764ae8b0a90f908ad] Former-commit-id: 5473698ef4f0b331d8622af6a9131cf6a2674c59
81 lines
2.8 KiB
Text
81 lines
2.8 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
|
|
, 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
|