-
Notifications
You must be signed in to change notification settings - Fork 6
/
wai-saml2.cabal
135 lines (130 loc) · 3.47 KB
/
wai-saml2.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
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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack
name: wai-saml2
version: 0.6
synopsis: SAML2 assertion validation as WAI middleware
description: A Haskell library which implements SAML2 assertion validation as WAI middleware
category: Security
homepage: https://github.com/mbg/wai-saml2#readme
bug-reports: https://github.com/mbg/wai-saml2/issues
author: Michael B. Gale
maintainer: github@michael-gale.co.uk
copyright: Copyright (c) Michael B. Gale
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
tests/data/azuread-signed-assertion.xml
tests/data/azuread-signed-response.xml
tests/data/azuread.crt
tests/data/google.xml
tests/data/google.xml.expected
tests/data/keycloak.xml
tests/data/keycloak.xml.expected
tests/data/okta-attributes.xml
tests/data/okta.crt
tests/data/okta.xml
tests/data/okta.xml.expected
tests/data/metadata/google.xml
tests/data/metadata/google.xml.expected
tests/data/metadata/keycloak.xml
tests/data/metadata/keycloak.xml.expected
source-repository head
type: git
location: https://github.com/mbg/wai-saml2
library
exposed-modules:
Network.Wai.SAML2
Network.Wai.SAML2.Assertion
Network.Wai.SAML2.C14N
Network.Wai.SAML2.Config
Network.Wai.SAML2.EntityDescriptor
Network.Wai.SAML2.Error
Network.Wai.SAML2.KeyInfo
Network.Wai.SAML2.NameIDFormat
Network.Wai.SAML2.Request
Network.Wai.SAML2.Response
Network.Wai.SAML2.Signature
Network.Wai.SAML2.StatusCode
Network.Wai.SAML2.Validation
Network.Wai.SAML2.XML
Network.Wai.SAML2.XML.Encrypted
other-modules:
Paths_wai_saml2
hs-source-dirs:
src
default-extensions:
FlexibleInstances
OverloadedStrings
RecordWildCards
ghc-options: -W
build-depends:
base >=4.8 && <5
, base16-bytestring >=0.1 && <1.1
, base64-bytestring >=0.1 && <2
, bytestring >=0.9 && <0.13
, c14n >=0.1.0.1 && <1
, containers >=0.6 && <0.8
, crypton <2
, crypton-x509 <2
, crypton-x509-store <2
, data-default-class <1
, http-types <1
, mtl >=2.2.1 && <3
, network-uri >=2.0 && <3
, text <2.2
, time >=1.9 && <2
, vault >=0.3 && <1
, wai >=3.0 && <4
, wai-extra >=3.0 && <4
, xml-conduit <2
, zlib >=0.6.0.0 && <0.8
default-language: Haskell2010
test-suite wai-saml2-test
type: exitcode-stdio-1.0
main-is: spec.hs
other-modules:
Parser
Validation
Paths_wai_saml2
hs-source-dirs:
tests
default-extensions:
FlexibleInstances
OverloadedStrings
RecordWildCards
ghc-options: -Wall -Wcompat
build-depends:
base
, base16-bytestring >=0.1 && <1.1
, base64-bytestring >=0.1 && <2
, bytestring
, c14n >=0.1.0.1 && <1
, containers >=0.6 && <0.8
, crypton <2
, crypton-x509 <2
, crypton-x509-store <2
, data-default-class <1
, filepath
, http-types <1
, mtl >=2.2.1 && <3
, network-uri >=2.0 && <3
, pretty-show
, tasty
, tasty-expected-failure
, tasty-golden
, tasty-hunit
, text <2.2
, time >=1.9 && <2
, transformers
, vault >=0.3 && <1
, wai >=3.0 && <4
, wai-extra >=3.0 && <4
, wai-saml2
, xml-conduit
, zlib >=0.6.0.0 && <0.8
default-language: Haskell2010