-
Notifications
You must be signed in to change notification settings - Fork 17
/
wai-middleware-auth.cabal
117 lines (113 loc) · 4.31 KB
/
wai-middleware-auth.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
cabal-version: 1.18
name: wai-middleware-auth
version: 0.2.6.0
synopsis: Authentication middleware that secures WAI application
description: Please see the README and Haddocks at <https://www.stackage.org/package/wai-middleware-auth>
license: MIT
license-file: LICENSE
author: Alexey Kuleshevich
maintainer: alexey@fpcomplete.com
category: Web
build-type: Simple
extra-doc-files: README.md CHANGELOG.md
library
exposed-modules: Network.Wai.Middleware.Auth
Network.Wai.Middleware.Auth.OAuth2
Network.Wai.Middleware.Auth.OAuth2.Gitlab
Network.Wai.Middleware.Auth.OAuth2.Github
Network.Wai.Middleware.Auth.OAuth2.Google
Network.Wai.Middleware.Auth.OIDC
Network.Wai.Middleware.Auth.Provider
Network.Wai.Auth.Executable
Network.Wai.Auth.Internal
other-modules: Paths_wai_middleware_auth
Network.Wai.Auth.AppRoot
Network.Wai.Auth.Config
Network.Wai.Auth.ClientSession
Network.Wai.Auth.Tools
build-depends: aeson
, base >= 4.12 && < 5
, base64-bytestring
, binary
, blaze-builder
, blaze-html
, bytestring
, case-insensitive
, cereal
, clientsession
, cookie >= 0.4.2
, exceptions
, hoauth2 >= 1.11
, http-client
, http-client-tls
, http-conduit
, http-reverse-proxy
, http-types
, jose >= 0.8.0
, microlens
, mtl
, regex-posix
, safe-exceptions
, shakespeare
, text
, time
, unix-compat
, unordered-containers
, uri-bytestring
, vault
, wai >= 3.0 && < 4
, wai-app-static
, wai-extra >= 3.0.7
, yaml
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable wai-auth
default-language: Haskell2010
hs-source-dirs: app
main-is: Main.hs
build-depends: base
, bytestring
, cereal
, clientsession
, optparse-simple
, optparse-applicative
, wai-extra
, wai-middleware-auth
, warp
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
test-suite spec
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules: Network.Wai.Auth.Test
, Spec.Network.Wai.Auth.Internal
, Spec.Network.Wai.Middleware.Auth.OAuth2
, Spec.Network.Wai.Middleware.Auth.OIDC
build-depends: base
, aeson
, binary
, bytestring
, clientsession
, cookie
, hedgehog
, hoauth2
, http-types
, jose
, microlens
, mtl
, tasty
, tasty-hedgehog
, tasty-hunit
, text
, time
, uri-bytestring
, wai
, wai-extra
, wai-middleware-auth
, warp
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
source-repository head
type: git
location: https://github.com/fpco/wai-middleware-auth