wstunnel/wstunnel.cabal
Romain GERARD c7c061fea7 update wstunnel.cabal
Former-commit-id: 26c8d4ba879c56d5189f0ac001a254d38a5c5bdf
Former-commit-id: 06cc2b0008647359cab2d5e4779fdbd44c041a38 [formerly c12d4bf7ef4acb108b177cb32bf8d2c82c23b68d] [formerly e6592c9beaf058ee6f9d54d0ea6c4de3300d6691 [formerly 5b1581653314fd98fa1e73e0f43c3d11c47ae47a [formerly 5b1581653314fd98fa1e73e0f43c3d11c47ae47a [formerly 5b1581653314fd98fa1e73e0f43c3d11c47ae47a [formerly dd6ceab2051630bb2c227b90a425fd5b298cd515]]]]]
Former-commit-id: 5d4d207ae131c28e581474e4ca1fb4bc6a055b60 [formerly 3cd5bad7bc32d61960feee8da9c9d440d4544bae]
Former-commit-id: 5e3f4746d43bae7787d8d75e797bd821b21e0b4b
Former-commit-id: b59af6b6a840eef809ca0e563ab92b0b0b61da17
Former-commit-id: 722a02b9fe7a9f0d66ed202686b5832c734b7011
Former-commit-id: 4039ef6e03d9a25b98da601a8adb9f026371e32f [formerly 98370c705af64c60e824e98e803c590efcea4cbb]
Former-commit-id: bc6b56fed78f0769de71d9b09bca16893b8733cb
2020-07-12 12:39:59 +02:00

78 lines
2.8 KiB
Text

name: wstunnel
version: 0.3.0.1
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 < 3.0.0.0
, 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