packages feed

pipes-websockets-0.1.0.0: pipes-websockets.cabal

name:                pipes-websockets
version:             0.1.0.0
synopsis:            WebSockets in the Pipes framework.
homepage:            https://github.com/silky/pipes-websockets#readme
bug-reports:         https://github.com/silky/pipes-websockets/issues
license:             BSD3
license-file:        LICENSE
author:              Noon van der Silk
maintainer:          noonsilk@gmail.com
copyright:           2016, Noon van der Silk
category:            Web
build-type:          Simple
extra-source-files:  README.md, CHANGELOG.md, stack.yaml
cabal-version:       >=1.10
description:
  This library provides Producers and Consumers of data
  to/from WebSocket connections.
  .
  Example usage can be found in "Pipes.WebSockets.Examples". The executable
  produced by this package simple runs one of the examples.
  .
  Import "Pipes.WebSockets" to use the library.
  .
  See @CHANGELOG.md@ for changes.

library
  ghc-options:         -Wall
  default-language:    Haskell2010
  hs-source-dirs:      src
  exposed-modules:     Pipes.WebSockets
  exposed-modules:     Pipes.WebSockets.Examples
  build-depends:       base >= 4.7 && < 5
                     , websockets
                     , pipes
                     , pipes-concurrency
                     , text
                     , transformers


executable pipes-websockets-example
  default-language:    Haskell2010
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -Wall
  hs-source-dirs:      example
  main-is:             Main.hs
  build-depends:       base >= 4.7 && < 5
                     , pipes-websockets


source-repository head
  type:     git
  location: https://github.com/silky/pipes-websockets