-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathservant-oauth-server.cabal
46 lines (44 loc) · 1.99 KB
/
servant-oauth-server.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
name: servant-oauth-server
version: 0.1.0.0
synopsis: OAuth2 bearer token auth and token endpoint for Servant
description: Defines Servant API combinators which require or check for OAuth2 bearer token authentication (with JWT-encoded tokens), verify, and capture claims.
Also includes a token endpoint implementation and utilities for verifying common types of assertion grants (for social login).
homepage: https://github.com/george-steel/servant-oauth-server#readme
license: BSD3
license-file: LICENSE
author: George Steel
maintainer: [email protected]
copyright: 2018-2019 Satsuma Labs, 2019-2021 George Steel
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -Wno-type-defaults -Wno-unused-imports -fno-warn-orphans
exposed-modules: Servant.OAuth.ResourceServer
, Servant.OAuth.ResourceServer.Types
, Servant.OAuth.JWT
, Servant.OAuth.TokenServer
, Servant.OAuth.TokenServer.Types
, Servant.OAuth.Grants
, Servant.OAuth.Grants.Facebook
build-depends: base
, unordered-containers
, servant
, servant-server
, wai
, text
, jose
, aeson
, lens
, mtl
, bytestring
, http-api-data
, time
, http-client
, http-types
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/george-steel/servant-oauth-server