packages feed

network-simple-wss-0.1: network-simple-wss.cabal

name: network-simple-wss
version: 0.1
synopsis: Simple interface to TLS secured WebSockets.
description: Simple interface to TLS secured WebSockets.
homepage: https://github.com/k0001/network-simple-wss
bug-reports: https://github.com/k0001/network-simple-wss/issues
license: BSD3
license-file: LICENSE
author: Renzo Carbonara
maintainer: renλren.zone
copyright: Copyright (c) Renzo Carbonara 2018
category: Network
build-type: Simple
cabal-version: >=1.8
extra-source-files: README.md changelog.md

source-repository head
    type: git
    location: https://github.com/k0001/network-simple-wss

library
  hs-source-dirs: src
  exposed-modules: Network.Simple.WSS
  ghc-options: -Wall -O2
  build-depends:
    base >=4.7 && <5.0,
    bytestring,
    safe-exceptions,
    network-simple-tls >=0.3.2,
    network-simple-ws,
    websockets