forked from dgvncsz0f/hoauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhoauth.cabal
47 lines (43 loc) · 1.56 KB
/
hoauth.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: hoauth
version: 0.3.5
category: Network,Protocol,OAuth
license: BSD3
license-file: LICENSE
author: Diego Souza
maintainer: Diego Souza <dsouza at bitforest.org>
stability: experimental
build-type: Simple
cabal-version: >= 1.6
synopsis: A Haskell implementation of OAuth 1.0a protocol.
description: This library implements all PLAINTEXT, HMAC-SHA1 and RSA-SHA1
signatures as defined in the specification 1.0. Currently it
supports only /consumer/ related functions, but there are plans to
add support /service providers/ as well.
More on OAuth protocol info at: <http://oauth.net/>
library
build-depends: base<5
, bytestring>=0.9.1.5
, crypto-pubkey-types>=0.1.1
, binary>=0.5.0.2
, SHA>=1.4.1.1
, dataenc>=0.13.0.2
, utf8-string>=0.3.4
, time>=1.1.4
, old-locale>=1.0.0.2
, random>=1.0.0.2
, curl>=1.3.5
, mtl>=1.1.0.2
, RSA>=1.2.0.1
, entropy>=0.2.1
exposed-modules: Network.OAuth.Http.Request
, Network.OAuth.Http.Response
, Network.OAuth.Http.HttpClient
, Network.OAuth.Http.CurlHttpClient
, Network.OAuth.Http.PercentEncoding
, Network.OAuth.Http.Util
, Network.OAuth.Consumer
hs-source-dirs: src/main/haskell
ghc-options: -W -Wall
source-repository head
type: git
location: git://github.com/dgvncsz0f/hoauth.git