packages feed

ghci-websockets-0.0.2: ghci-websockets.cabal

cabal-version: 2.2
name: ghci-websockets
version: 0.0.2
license: BSD-3-Clause
license-file: LICENSE
copyright: Copyright (C) 2019 Jann Mueller
maintainer: Jann Müller (j.mueller.11@alumni.ucl.ac.uk)
author: Jann Müller
stability: experimental
homepage: https://github.com/j-mueller/ghci-websockets
bug-reports: https://github.com/j-mueller/ghci-websockets/issues
synopsis: A websocket server that survives GHCi reloads
description: A websocket server that survives GHCi reloads - use your browser to visualise results from the REPL.
category: Language
build-type: Simple
extra-doc-files:
  README.md
  CHANGELOG.md
extra-source-files:
    ghci-websockets.gif
    html/index.html

source-repository head
    type: git
    location: https://github.com/j-mueller/ghci-websockets

library
    exposed-modules:
        Ghci.Server.Http.Internal
        Ghci.Server.Http.Stage0
        Ghci.Server.Websockets.Internal
        Ghci.Server.Websockets.Message
        Ghci.Server.Config
        Ghci.Server
    hs-source-dirs: src
    default-language: Haskell2010
    ghc-options: -Wall
    build-depends:
        base <= 5,
        aeson -any,
        foreign-store -any,
        websockets -any,
        text -any,
        containers -any,
        wai-app-static -any,
        bytestring -any,
        wai -any,
        warp -any