wstunnel/wstunnel.cabal
Romain GERARD 43c161297e update wstunnel.cabal
Former-commit-id: cfd05c8735a8c596cb2aee0669698bc5782e21d2
Former-commit-id: fc0d364b5da65295475a1fec8ed22b9a58ff2499 [formerly c9768cdb98dcb5f4d606ed81ba97570e56d16ecf] [formerly 710ba20ba3cd02a7a36792e044f7d3dac50ca6bf [formerly 713f0e6d428e7dcb368e244c62986453b36db81d [formerly 713f0e6d428e7dcb368e244c62986453b36db81d [formerly e70f6a6ab304582dbc8857e95e45ff402aa9133b]] [formerly 713f0e6d428e7dcb368e244c62986453b36db81d [formerly e70f6a6ab304582dbc8857e95e45ff402aa9133b] [formerly e70f6a6ab304582dbc8857e95e45ff402aa9133b [formerly 87b6e44af99dc8e9871f863ef1a6abbca0b84aa2]]]]]
Former-commit-id: 5ab3b5aaa3101b656147368e298fedb9b28c4c77 [formerly 5b7fc4044f22def20e074ebebb30eac0838de6de]
Former-commit-id: 5954f38f8098fdb8f1e31eb0514ece9175a258ff
Former-commit-id: 5e751c83b88546e0c43761036ba0f6c50e4a1b7a
Former-commit-id: 21f136df7facd537886cf5a268700dd46698810b
Former-commit-id: 597eb41336393ba5c6a63cc2c8a2d007f0146e44 [formerly 16f01edb1da4b71520b1a6bfa64ca0872edc83b4]
Former-commit-id: 9c909e3e9ac8ee5469cb81ffafeeca33371db7e2
2020-07-12 12:39:59 +02:00

78 lines
2.7 KiB
Text

name: wstunnel
version: 0.3.0.0
synopsis: Initial project template from stack
description: For more information regarding wstunnel, please refer to README.md
homepage: https://github.com/githubuser/wstunnel#readme
license: BSD3
license-file: LICENSE
author: Author name here
maintainer: example@example.com
copyright: 2016 Author name here
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.0.0.0
, 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