packages feed

twitter-enumerator-0.0.3: twitter-enumerator.cabal

name:              twitter-enumerator
version:           0.0.3
license:           BSD3
license-file:      LICENSE
author:            Takahiro HIMURA
maintainer:        taka@himura.jp
synopsis:          Twitter API package with enumerator interface and Streaming API support.
description:       This package uses enumerator package for access Twitter API.
category:          Web, Enumerator
stability:         Experimental
cabal-version:     >= 1.6
build-type:        Simple
homepage:          https://github.com/himura/twitter-enumerator

source-repository head
  type: git
  location: git://github.com/himura/twitter-enumerator.git

source-repository this
  type: git
  location: git://github.com/himura/twitter-enumerator.git
  tag: 0.0.3

library
  ghc-options: -Wall

  build-depends:
      base >= 4 && < 5
    , transformers >= 0.2 && < 0.3
    , authenticate >= 0.9 && < 0.11
    , tls-extra >= 0.4 && < 0.4.3
    , enumerator >= 0.4.14 && < 0.5
    , http-types
    , http-enumerator >= 0.6.6 && < 0.7.3
    , aeson >= 0.3.2.2
    , attoparsec >= 0.8.6.1
    , attoparsec-enumerator
    , bytestring
    , text
    , containers

  exposed-modules:
    Web.Twitter.Enumerator
    Web.Twitter.Enumerator.Types
    Web.Twitter.Enumerator.Monad
    Web.Twitter.Enumerator.Api
    Web.Twitter.Enumerator.Fetch
    Web.Twitter.Enumerator.Post

  other-modules:
    Web.Twitter.Enumerator.Utils