forked from freizl/hoauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
74 lines (56 loc) · 1.8 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
68
69
70
71
72
73
74
name: hoauth2
version: '1.10.1'
synopsis: Haskell OAuth2 authentication client
description: ! 'Haskell OAuth2 authentication client. Tested with the following services:
* AzureAD: <https://docs.microsoft.com/en-us/azure/active-directory/develop/v1-protocols-oauth-code>
* Google: <https://developers.google.com/accounts/docs/OAuth2WebServer>
* Github: <http://developer.github.com/v3/oauth/>
* Facebook: <http://developers.facebook.com/docs/facebook-login/>
* Fitbit: <http://dev.fitbit.com/docs/oauth2/>
* StackExchange: <https://api.stackexchange.com/docs/authentication>
* DropBox: <https://www.dropbox.com/developers/reference/oauth-guide>
* Weibo: <http://open.weibo.com/wiki/Oauth2>
* Douban: <http://developers.douban.com/wiki/?title=oauth2>'
category: Network
author: Haisheng Wu
maintainer: Haisheng Wu <freizl@gmail.com>
copyright: Haisheng Wu
license: BSD-3
homepage: https://github.com/freizl/hoauth2
git: git://github.com/freizl/hoauth2.git
extra-source-files:
- README.md
ghc-options:
- -Wall
- -fwarn-tabs
- -funbox-strict-fields
- -fno-warn-unused-do-bind
dependencies:
- binary >=0.8.3.0 && <0.8.8
- text >=0.11 && <1.3
- bytestring >=0.9 && <0.11
- http-conduit >=2.1 && <2.4
- http-types >=0.11 && <0.13
- aeson >=1.3.0.0 && <1.5
- unordered-containers >=0.2.5
- uri-bytestring >=0.2.3.1 && <0.4
- microlens >=0.4.0 && <0.5
library:
source-dirs: src
exposed-modules:
- Network.OAuth.OAuth2.HttpClient
- Network.OAuth.OAuth2.Internal
- Network.OAuth.OAuth2
- Network.OAuth.OAuth2.TokenRequest
- Network.OAuth.OAuth2.AuthorizationRequest
dependencies:
- base >=4 && <5
- uri-bytestring-aeson >=0.1 && <0.2
- exceptions >=0.8.3 && <0.11
flags:
test:
description: Build the executables
manual: false
default: false
stability: Beta
tested-with: ghc <=8.6.5