2e53928d19
Former-commit-id: 04815d93a8c7e12b2bbeb8d3c6fe55c5cb6af2e0 Former-commit-id: cd37ae36b0fe0b47de29d1d360981136d5f76d24 [formerly b008b9df45b8fcb10ed8be4b80e8c2dc9494ebf5] [formerly 23a42072130b97d8e92ca59d81448f44a5f2c216 [formerly e03828f54cdb79ca12df4423bd9c9dcbc9bf441c [formerly e03828f54cdb79ca12df4423bd9c9dcbc9bf441c [formerly e03828f54cdb79ca12df4423bd9c9dcbc9bf441c [formerly fcb61dbccaeb639d22599a9bf585fe74880dc2c6]]]]] Former-commit-id: bf839c3dc1a3e2d4b56c4cbb772134837f52480a [formerly e9cd21213817c2fa87a09133f52fe8b8d8e5e494] Former-commit-id: a6680fac8ecfcfe8a079049ff5745d18a6e6ed2e Former-commit-id: 133ec29d50da20b3928de5387a898c3c788dfef3 Former-commit-id: 9375011361e0198ff7141526646603fdd81dba77 Former-commit-id: 5d24b611072f677088ea152c91a9d6a450c52d65 [formerly 34da7e99e16e7de318d4a54f06c76f34fa256490] Former-commit-id: 9d0a25506322e55d9c59d1210c0e9fe17239b401
67 lines
2.2 KiB
Text
67 lines
2.2 KiB
Text
name: wstunnel
|
|
version: 0.1.0.0
|
|
synopsis: Initial project template from stack
|
|
description: Please see 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
|
|
, 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
|
|
|
|
default-language: Haskell2010
|
|
|
|
test-suite wstunnel-test
|
|
type: exitcode-stdio-1.0
|
|
hs-source-dirs: test
|
|
main-is: Spec.hs
|
|
build-depends: base
|
|
, text >= 1.2.2.1
|
|
, wstunnel
|
|
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"
|
|
build-depends: base
|
|
, bytestring
|
|
, classy-prelude
|
|
, cmdargs
|
|
, hslogger
|
|
, text >= 1.2.2.1
|
|
, wstunnel
|
|
|
|
default-language: Haskell2010
|