-
Notifications
You must be signed in to change notification settings - Fork 1
/
googleplus.cabal
47 lines (43 loc) · 1.95 KB
/
googleplus.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
name: googleplus
version: 0.3.1.1
synopsis: Haskell implementation of the Google+ API v1
description:
Will implement the Google+ REST API. Google+ is a social network made by
Google. Found out more at <http://plus.google.com>.
Implements the full API as of Oct 15, 2011. Only features read-only API
access beacuse that is all that Google has published thus far. Both API and
OAuth authentication is supported, but note that if you intend to use OAuth,
this library does not currently provide the means to procure and renew OAuth
tokens.
category: Web
license: BSD3
license-file: LICENSE
author: Michael Xavier <[email protected]>
maintainer: Michael Xavier <[email protected]>
cabal-version: >= 1.6
build-type: Simple
extra-source-files: README CHANGELOG
homepage: http://github.com/michaelxavier/GooglePlus
library
Exposed-modules: Web.GooglePlus,
Web.GooglePlus.Types,
Web.GooglePlus.Monad
Ghc-Options: -Wall
build-depends: base >= 4 && < 5,
aeson >= 0.3.1.1 && < 0.4,
attoparsec >= 0.9.1.2 && < 0.10,
containers >= 0.4.0.0 && < 0.5,
bytestring >= 0.9.1.10 && < 0.10,
enumerator >= 0.4.9 && < 0.5,
haskell98 >= 1.1.0.1 && < 1.2,
http-enumerator >= 0.7.0 && < 0.8,
http-types >= 0.6.0 && < 0.7,
mtl >= 2.0.1.0 && < 2.1,
timerep >= 1.0.0 && < 1.1,
text >= 0.11.0.5 && < 0.12,
time >= 1.2.0.3 && < 1.5,
transformers >= 0.2.2.0 && < 0.3,
url >= 2.1.2 && < 2.3
source-repository head
type: git
location: git://github.com/michaelxavier/GooglePlus.git