packages feed

hipbot-0.5: hipbot.cabal

name:               hipbot
version:            0.5
license:            BSD3
license-file:       LICENSE
author:             Richard Wallace <rwallace@atlassian.com>
maintainer:         Richard Wallace <rwallace@atlassian.com>
copyright:          (c) 2015 Richard Wallace
synopsis:           A library for building HipChat Bots
description:        A library for building HipChat Bots
category:           Web
homepage:           https://github.com/purefn/hipbot
bug-reports:        https://github.com/purefn/hipbot/issues
cabal-version:      >= 1.8
build-type:         Simple

extra-source-files:
  .ghci
  .gitignore
  .travis.yml
  HLint.hs
  LICENSE
  README.md
  pg.sql

source-repository   head
  type:             git
  location:         https://github.com/purefn/hipbot.git

library
  ghc-options:      -Wall

  hs-source-dirs:   src

  exposed-modules:  HipBot
                  , HipBot.AbsoluteURI
                  , HipBot.API
                  , HipBot.Descriptor
                  , HipBot.Notification
                  , HipBot.Webhooks

  other-modules:    HipBot.Internal.HipBot
                  , HipBot.Internal.OAuth
                  , HipBot.Internal.Resources
                  , HipBot.Internal.Types

  build-depends:    base                            >=4.6 && <5
                  , aeson                           >=0.7.0.3 && <1
                  , bifunctors                      >=3.0 && <5
                  , blaze-builder                   >=0.2.1.4 && <0.4
                  , bytestring                      >=0.9.1.10 && <0.11
                  , either                          >=3.1 && <5
                  , exceptions                      >=0.1.1 && <1
                  , http-client                     >=0.4.6 && <1
                  , http-client-tls                 >=0.2 && <1
                  , http-types                      >=0.8.0 && <0.9
                  , jwt                             >=0.5 && <1
                  , lens                            >=4.5 && <5
                  , mtl                             >=2.0.1 && <2.3
                  , network-uri                     >=2.4 && <3
                  , postgresql-simple               >=0.4 && <1
                  , resource-pool                   >=0.2 && <1
                  , safe                            >=0.2 && <1
                  , stm                             >=2.3 && <3
                  , text                            >=0.11 && <1.3
                  , time                            >=1.4 && <2
                  , transformers                    >=0.2 && <0.5
                  , unordered-containers            ==0.2.*
                  , utf8-string                     >=0.3.1 && <1.1
                  , wai                             >=3.0 && <4
                  , wai-lens                        >=0.1 && <1
                  , webcrank                        >=0.2.2 && <1
                  , webcrank-wai                    >=0.2.1 && <1
                  , wreq                            >=0.2 && <1