packages feed

network-simple-ws-0.2: network-simple-ws.cabal

cabal-version: 2.4
name: network-simple-ws
version: 0.2
synopsis: Simple interface to WebSockets.
description: Simple interface to WebSockets.
homepage: https://hackage.haskell.org/package/network-simple-ws
bug-reports: https://github.com/k0001/network-simple/issues
license: BSD-3-Clause
license-file: LICENSE
author: Renzo Carbonara
maintainer: renλren.zone
copyright: Copyright (c) Renzo Carbonara 2018
category: Network
build-type: Simple
extra-source-files: README.md changelog.md

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

library
  default-language:  Haskell2010
  hs-source-dirs: src
  ghc-options: -Wall -O2
  exposed-modules: Network.Simple.WS
  build-depends:
    async,
    base >=4.7 && <5.0,
    bytestring,
    case-insensitive,
    safe-exceptions,
    network-simple >=0.4.3,
    websockets