-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter-enumerator.cabal
53 lines (47 loc) · 1.43 KB
/
twitter-enumerator.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
, lifted-base >= 0.1 && < 0.2
, 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
, data-default >= 0.2 && < 0.4
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