packages feed

discord-gateway-0.2.2: discord-gateway.cabal

name:                discord-gateway
version:             0.2.2
synopsis:            An API wrapper for Discord in Haskell
description:         Provides an api wrapper and framework for writing
                     bots against the Discord <https://discordapp.com/> API.
                     If for some reason hackage/stackage is failing to build
                     documentation, a backup set is hosted at <https://jano017.github.io/Discord.hs/>
homepage:            https://github.com/jano017/Discord.hs
license:             MIT
license-file:        LICENSE
author:              Joshua Koike
maintainer:          jkoike2013@gmail.com
-- copyright:
category:            Network
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  exposed-modules:     Network.Discord.Gateway
  build-depends:       base==4.*
                     , aeson>=1.0 && <1.2
                     , hslogger==1.2.*
                     , transformers==0.5.*
                     , url==2.1.*
                     , websockets==0.10.*
                     , wuss==1.1.*
                     , discord-types
  ghc-options:         -Wall
  hs-source-dirs:      src
  default-language:    Haskell2010

source-repository head
  type : git
  location: https://github.com/jano017/Discord.hs