forked from tweag/servant-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservant-oauth2.cabal
68 lines (65 loc) · 1.63 KB
/
servant-oauth2.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
name: servant-oauth2
version: 0.1.0.1
synopsis: A library for OAuth2 authentication in servant.
description: A library for OAuth2 authentication in servant.
It is a modern wrapper around wai-middleware-auth, and provides the ability to build type-safe authorised APIs with authentication provided by the wai oauth2 backends.
category: Web
homepage: https://github.com/tweag/servant-oauth2#readme
author: Tweag
maintainer: [email protected]
copyright: 2022 Tweag
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
LICENSE
library
exposed-modules:
Servant.OAuth2
Servant.OAuth2.Cookies
Servant.OAuth2.Hacks
other-modules:
Paths_servant_oauth2
hs-source-dirs:
src
default-extensions:
DataKinds
DeriveGeneric
DerivingStrategies
FlexibleContexts
ImportQualifiedPost
KindSignatures
OverloadedStrings
PackageImports
ScopedTypeVariables
TypeApplications
TypeOperators
ghc-options: -W -Wall
build-depends:
base >=4.7 && <5
, base64-bytestring
, binary
, bytestring
, clientsession
, cookie
, exceptions
, hoauth2
, http-types
, mtl
, servant
, servant-blaze
, servant-server
, shakespeare
, text
, tomland
, unordered-containers
, uri-bytestring
, wai
, wai-middleware-auth
, warp
default-language: Haskell2010