forked from elliottt/hsopenid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openid.cabal
59 lines (56 loc) · 2.14 KB
/
openid.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
54
55
56
57
58
59
name: openid
version: 0.2.0.0
cabal-version: >= 1.6
synopsis: An implementation of the OpenID-2.0 spec.
description: An implementation of the OpenID-2.0 spec.
category: Network
author: Trevor Elliott
homepage: http://github.com/elliottt/hsopenid
maintainer: [email protected]
copyright: (c) 2008. Trevor Elliott <[email protected]>
license: BSD3
license-file: LICENSE
build-type: Simple
tested-with: GHC == 6.12.1
extra-source-files: examples/Makefile, examples/test.hs examples/easy.hs
flag split-base
default: True
description: Use the new split base package.
library
if flag(split-base)
build-depends: base >= 3 && < 10,
bytestring == 0.9.1.*,
containers >= 0.2 && < 0.4
else
build-depends: base < 3
build-depends: HTTP >= 4000.0.9 && < 4000.2,
monadLib == 3.6.*,
nano-hmac == 0.2.*,
network == 2.2.*,
time == 1.1.*,
xml == 1.3.*,
HsOpenSSL >= 0.9 && < 1.0
hs-source-dirs: src
exposed-modules: Codec.Binary.Base64,
Codec.Encryption.DH,
Data.Digest.OpenSSL.SHA,
Network.OpenID,
Network.OpenID.Association,
Network.OpenID.Association.Manager,
Network.OpenID.Association.Map,
Network.OpenID.AttributeExchange,
Network.OpenID.Authentication,
Network.OpenID.Discovery,
Network.OpenID.HTTP,
Network.OpenID.Normalization,
Network.OpenID.Types,
Network.OpenID.Utils,
Text.XRDS
other-modules: Network.OpenID.SSL
ghc-options: -W
extensions: EmptyDataDecls,
FlexibleContexts,
FlexibleInstances,
ForeignFunctionInterface,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses