cabal-version: 2.2 name: wuss version: 2.0.1.1 synopsis: Secure WebSocket (WSS) clients description: Wuss is a library that lets you easily create secure WebSocket clients over the WSS protocol. It is a small addition to and is adapted from existing solutions by , , and . build-type: Simple category: Network extra-source-files: CHANGELOG.markdown README.markdown license-file: LICENSE.markdown license: MIT maintainer: Taylor Fausak source-repository head location: https://github.com/tfausak/wuss type: git flag pedantic default: False description: Enables @-Werror@, which turns warnings into errors. manual: True common library build-depends: , base >= 4.15.0 && < 4.18 , bytestring >= 0.10.12 && < 0.12 , connection >= 0.3.1 && < 0.4 , network >= 3.1.1 && < 3.2 , websockets >= 0.12.7 && < 0.13 , exceptions >= 0.10.4 && < 0.11 default-language: Haskell2010 ghc-options: -Weverything -Wno-missing-exported-signatures -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module -Wno-unsafe if impl(ghc >= 9.2) ghc-options: -Wno-missing-kind-signatures if flag(pedantic) ghc-options: -Werror library import: library exposed-modules: Wuss hs-source-dirs: source/library