Name: websockets Version: 0.9.0.1 Synopsis: A sensible and clean way to write WebSocket-capable servers in Haskell. Description: This library allows you to write WebSocket-capable servers. . An example server: . An example client: . See also: . * The specification of the WebSocket protocol: . * The JavaScript API for dealing with WebSockets: License: BSD3 License-file: LICENCE Copyright: (c) 2010-2011 Siniša Biđin (c) 2011-2013 Jasper Van der Jeugt (c) 2011 Steffen Schuldenzucker (c) 2011 Alex Lang Author: Siniša Biđin Jasper Van der Jeugt Steffen Schuldenzucker Alex Lang Maintainer: Jasper Van der Jeugt Stability: experimental Category: Network Build-type: Simple Cabal-version: >= 1.8 Homepage: http://jaspervdj.be/websockets Bug-reports: https://github.com/jaspervdj/websockets/issues Extra-source-files: CHANGELOG Library Hs-source-dirs: src Ghc-options: -Wall Exposed-modules: Network.WebSockets Network.WebSockets.Connection Network.WebSockets.Stream -- Network.WebSockets.Util.PubSub TODO Other-modules: Network.WebSockets.Client Network.WebSockets.Http Network.WebSockets.Hybi13 Network.WebSockets.Hybi13.Demultiplex Network.WebSockets.Hybi13.Mask Network.WebSockets.Protocol Network.WebSockets.Server Network.WebSockets.Types Build-depends: attoparsec >= 0.10 && < 0.13, base >= 4 && < 5, base64-bytestring >= 0.1 && < 1.1, binary >= 0.5 && < 0.8, blaze-builder >= 0.3 && < 0.4, bytestring >= 0.9 && < 0.11, case-insensitive >= 0.3 && < 1.3, containers >= 0.3 && < 0.6, mtl >= 2.0 && < 2.3, network >= 2.3 && < 2.7, random >= 1.0 && < 1.2, SHA >= 1.5 && < 1.7, text >= 0.10 && < 1.3, entropy >= 0.2.1 && < 0.4 Test-suite websockets-tests Type: exitcode-stdio-1.0 Hs-source-dirs: src tests/haskell Main-is: TestSuite.hs Ghc-options: -Wall Other-modules: Network.WebSockets.Handshake.Tests Network.WebSockets.Http.Tests Network.WebSockets.Server.Tests Network.WebSockets.Tests Network.WebSockets.Tests.Util Build-depends: HUnit >= 1.2 && < 1.3, QuickCheck >= 2.4 && < 2.8, test-framework >= 0.4 && < 0.9, test-framework-hunit >= 0.2 && < 0.4, test-framework-quickcheck2 >= 0.2 && < 0.4, -- Copied from regular dependencies... attoparsec >= 0.10 && < 0.13, base >= 4 && < 5, base64-bytestring >= 0.1 && < 1.1, binary >= 0.5 && < 0.8, blaze-builder >= 0.3 && < 0.4, bytestring >= 0.9 && < 0.11, case-insensitive >= 0.3 && < 1.3, containers >= 0.3 && < 0.6, mtl >= 2.0 && < 2.3, network >= 2.3 && < 2.6, random >= 1.0 && < 1.1, SHA >= 1.5 && < 1.7, text >= 0.10 && < 1.3, entropy >= 0.2.1 && < 0.4 Source-repository head Type: git Location: https://github.com/jaspervdj/websockets