packages feed

hzulip-1.1.0.3: hzulip.cabal

name:                hzulip
version:             1.1.0.3
synopsis:            A haskell wrapper for the Zulip API.
description:         This a Zulip API wrapper for Haskell.
homepage:            https://github.com/yamadapc/hzulip
license:             GPL-2
license-file:        LICENSE
author:              Pedro Tacla Yamada
maintainer:          tacla.yamada@gmail.com
copyright:           Pedro Tacla Yamada <tacla.yamada@gmail.com> 2014
category:            Web
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type:     git
  location: git://github.com/yamadapc/hzulip.git

library
  exposed-modules:     Web.HZulip
                     , Web.HZulip.Types
  build-depends:       base >=4 && <5
                     , http-client >=0.2 && <1
                     , http-client-tls
                     , http-types
                     , exceptions >=0.6 && <0.7
                     , mtl >=2.1 && <2.2
                     , transformers
                     , lens >=4.4 && <5
                     , aeson >=0.7 && <1
                     , lens-aeson >=1 && <2
                     , bytestring >=0.10 && <1
                     , text >=1.2 &&<1.3
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite hzulip-spec
  type:                exitcode-stdio-1.0
  main-is:             Spec.hs
  hs-source-dirs:      src
                     , test
  build-depends:       base >=4 && <5
                     , async
                     , http-client >=0.2 && <1
                     , http-client-tls
                     , http-types
                     , exceptions >=0.6 && <0.7
                     , mtl >=2.1 && <2.2
                     , transformers
                     , lens >=4.4 && <5
                     , aeson >=0.7 && <1
                     , scotty >=0.9 && <0.10
                     , lens-aeson >=1 && <2
                     , bytestring >=0.10 && <1
                     , hspec >=1.11 && <2
                     , raw-strings-qq >=1.0.2 && <2
                     , text >=1.2 &&<1.3
  default-language:    Haskell2010