packages feed

ws-chans-0.1.0.0: ws-chans.cabal

name:                ws-chans
version:             0.1.0.0
synopsis:            Unagi chan based websocket client
description:         Use Control.Concurrent.Chan.Unagi as an interface to a websocket server
homepage:            https://github.com/shmish111/ws-chans
license:             BSD3
license-file:        LICENSE
author:              David Smith
maintainer:          david.smith@keemail.me
copyright:           2017 David Smith
category:            Network
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Network.WebSockets.Chan.Unagi
  build-depends:       base >= 4.7 && < 5
                     , async
                     , network
                     , unagi-chan >= 0.4
                     , websockets
  default-language:    Haskell2010

test-suite ws-chans-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       Network.WebSockets.Chan.UnagiSpec
  build-depends:       base
                     , HUnit
                     , test-framework-quickcheck2
                     , http-types
                     , QuickCheck
                     , quickcheck-instances
                     , test-framework
                     , text
                     , unagi-chan
                     , wai
                     , wai-websockets
                     , warp
                     , websockets
                     , ws-chans
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/shmish111/ws-chans