-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.yaml
67 lines (61 loc) · 1.41 KB
/
package.yaml
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
name: wai-saml2
version: 0.6
github: "mbg/wai-saml2"
license: MIT
author: "Michael B. Gale"
maintainer: "github@michael-gale.co.uk"
copyright: "Copyright (c) Michael B. Gale"
category: Security
synopsis: "SAML2 assertion validation as WAI middleware"
description: "A Haskell library which implements SAML2 assertion validation as WAI middleware"
extra-source-files:
- README.md
- CHANGELOG.md
- tests/data/**
- tests/data/metadata/**
default-extensions:
- FlexibleInstances
- OverloadedStrings
- RecordWildCards
dependencies:
- 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
- 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
- crypton-x509 < 2
- crypton-x509-store < 2
- xml-conduit < 2
- zlib >= 0.6.0.0 && < 0.8
library:
source-dirs: src
ghc-options:
- -W
tests:
wai-saml2-test:
main: spec.hs
source-dirs: tests
ghc-options: -Wall -Wcompat
dependencies:
- base
- bytestring
- filepath
- pretty-show
- tasty
- tasty-expected-failure
- tasty-golden
- tasty-hunit
- transformers
- wai-saml2
- xml-conduit