File: hoauth.cabal

package info (click to toggle)
hoauth 0.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 96 kB
  • sloc: haskell: 554; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 1,440 bytes parent folder | download
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
name: hoauth
version: 0.2.3
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
                ,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
  exposed-modules: Network.OAuth.Http.Request
                  ,Network.OAuth.Http.Response
                  ,Network.OAuth.Http.HttpClient
                  ,Network.OAuth.Http.PercentEncoding
                  ,Network.OAuth.Http.Util
                  ,Network.OAuth.Consumer

  hs-source-dirs: src/main/haskell
  ghc-options: -W -Wall -fwarn-tabs

source-repository head
  type:     git
  location: git@github.com:dsouza/hoauth.git