wstunnel/wstunnel.cabal
Erèbe 49a5ddef2b Add optim flags to default build
Former-commit-id: 93937b11741564b60b82da0ad2a9c5af4dc210ef
Former-commit-id: 21dcbcbd059b8a07c5b9ea9f9ded8ffd80bb90fb [formerly 7f0e25f6d124d2d0219c6745fce70a466b1edbfe] [formerly 9d6056d363b86e4201a7bc9f5779fbe072ef8b02 [formerly f1e093184df7a9d5047685479d53234e6b622054 [formerly f1e093184df7a9d5047685479d53234e6b622054 [formerly f1e093184df7a9d5047685479d53234e6b622054 [formerly 8273e80f33580f733c524b53205dce1426303df8]]]]]
Former-commit-id: cd3a4b7614b2c2cdcf8c1fefc205ba1d2eaa3726 [formerly 6d4c9d917dc3b4388da3aee6cb5b919a1c05e316]
Former-commit-id: 2998cda65ed76f730e89420bdab50a7d0fd43b72
Former-commit-id: caf152ced11bee9a49aeb60cff8db32331674a5f
Former-commit-id: c98564348dfa8636fa86e30808a7106f78e4d44a
Former-commit-id: 0af9ca036b507537e2801a7eab4131e243206ca3 [formerly bb6cadc970fa71f188fda470897ce780a1480d51]
Former-commit-id: 2f798c3dd1e710d914eb8e67d1fa6850e6eea0fa
2016-11-26 16:59:35 +01:00

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
default-language: Haskell2010
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
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