yesod-auth-oauth2/package.yaml
patrick brisbin 93258d4468 Make extras accessors safer
Even though it's "guaranteed" that values will be present because we set
them, nothing stops end-users from using these functions on Creds values
created by other plugins! Since that seems common, it would be
irresponsible of us to remain so unsafe.
2018-02-12 09:10:34 -08:00

45 lines
990 B
YAML

---
name: yesod-auth-oauth2
version: '0.3.1'
synopsis: OAuth 2.0 authentication plugins
description: Library to authenticate with OAuth 2.0 for Yesod web applications.
category: Web
author: Tom Streller
maintainer: Pat Brisbin <pbrisbin@gmail.com>
license: MIT
github: thoughtbot/yesod-auth-oauth2.git
homepage: http://github.com/thoughtbot/yesod-auth-oauth2
ghc-options: -Wall
dependencies:
- base >=4.8.0.0 && <5
library:
source-dirs: src
dependencies:
- aeson >=0.6 && <1.3
- bytestring >=0.9.1.4
- errors
- hoauth2 >=1.3.0 && <1.6
- http-client >=0.4.0 && <0.6
- http-conduit >=2.0 && <3.0
- http-types >=0.8 && <0.10
- microlens
- random
- safe-exceptions
- text >=0.7 && <2.0
- transformers >=0.2.2 && <0.6
- uri-bytestring
- yesod-auth >=1.3 && <1.5
- yesod-core >=1.2 && <1.5
tests:
test:
main: Spec.hs
source-dirs: test
dependencies:
- yesod-auth-oauth2
- hspec
- uri-bytestring