forked from himura/twitter-conduit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtwitter-conduit.cabal
More file actions
194 lines (175 loc) · 4.36 KB
/
twitter-conduit.cabal
File metadata and controls
194 lines (175 loc) · 4.36 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
name: twitter-conduit
version: 0.0.2
license: BSD3
license-file: LICENSE
author: HATTORI Hiroki, Hideyuki Tanaka, Takahiro HIMURA
maintainer: Takahiro HIMURA <taka@himura.jp>
synopsis: Twitter API package with conduit interface and Streaming API support.
category: Web, Conduit
stability: Experimental
cabal-version: >= 1.8
build-type: Simple
homepage: https://github.com/himura/twitter-conduit
description:
This package provides bindings to Twitter's APIs (see <https://dev.twitter.com/>).
.
This package uses http-conduit package for access Twitter API (see <http://hackage.haskell.org/package/http-conduit>).
This package also depends to twitter-types package (see <http://hackage.haskell.org/package/twitter-types>).
.
You can find basic examples in the <https://github.com/himura/twitter-conduit/tree/master/sample> directory.
.
This package is under development. If you find something that has not been implemented yet, please send a pull request or open an issue on GitHub.
source-repository head
type: git
location: git://github.com/himura/twitter-conduit.git
flag build-samples
description: build samples
default: False
library
ghc-options: -Wall
build-depends:
base >= 4 && < 5
, transformers >= 0.2.2
, transformers-base
, template-haskell
, lifted-base >= 0.1
, monad-control >= 0.3
, lens >= 4.0
, authenticate-oauth >= 1.3
, resourcet >= 0.4.3
, conduit >= 1.0
, failure >= 0.2
, monad-logger
, shakespeare
, http-types
, http-conduit >= 2.0
, http-client-multipart
, aeson >= 0.7
, attoparsec >= 0.10
, attoparsec-conduit >= 1.0
, data-default >= 0.3
, bytestring >= 0.9
, text >= 0.11
, containers
, time
, twitter-types >= 0.2
exposed-modules:
Web.Twitter.Conduit
Web.Twitter.Conduit.Base
Web.Twitter.Conduit.Cursor
Web.Twitter.Conduit.Api
Web.Twitter.Conduit.Error
Web.Twitter.Conduit.Monad
Web.Twitter.Conduit.Stream
Web.Twitter.Conduit.Status
Web.Twitter.Conduit.Request
Web.Twitter.Conduit.Parameters
Web.Twitter.Conduit.Parameters.Internal
Web.Twitter.Conduit.Parameters.TH
other-modules:
test-suite hlint
type: exitcode-stdio-1.0
main-is: hlint.hs
hs-source-dirs: tests
build-depends:
base
, hlint >= 1.7
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
hs-source-dirs: tests
build-depends:
base
, filepath
, directory
, doctest
executable simple
main-is: simple.hs
hs-source-dirs: sample/
if !flag(build-samples)
buildable: False
else
build-depends:
base >= 4.0 && < 5
, transformers-base
, transformers
, monad-control
, lens
, bytestring
, text
, data-default
, resourcet
, conduit
, http-conduit
, monad-logger
, authenticate-oauth
, twitter-conduit
executable userstream
main-is: userstream.hs
hs-source-dirs: sample/
if !flag(build-samples)
buildable: False
else
build-depends:
base >= 4.0 && < 5
, containers
, transformers-base
, transformers
, monad-control
, bytestring
, text
, filepath
, directory
, network
, process
, case-insensitive
, lens
, aeson
, data-default
, resourcet
, conduit
, http-conduit
, monad-logger
, authenticate-oauth
, twitter-conduit
executable oauth_callback
main-is: oauth_callback.hs
hs-source-dirs: sample/
if !flag(build-samples)
buildable: False
else
build-depends:
base >= 4.0 && < 5
, containers
, transformers-base
, transformers
, monad-control
, bytestring
, text
, resourcet
, conduit
, http-types
, http-conduit
, authenticate-oauth
, twitter-conduit
, scotty >= 0.7
executable oauth_pin
main-is: oauth_pin.hs
hs-source-dirs: sample/
if !flag(build-samples)
buildable: False
else
build-depends:
base >= 4.0 && < 5
, containers
, transformers-base
, transformers
, monad-control
, bytestring
, text
, resourcet
, conduit
, http-types
, http-conduit
, authenticate-oauth
, twitter-conduit