Pinging @gregwebs. I've backported the relevant tweaks on the yesod-1.4 branch, to allow master to compile against persistent2. Whenever you're ready to release persistent2, we can: 1. Release persistent2. 2. Release new versions of yesod packages, which will work with persistent 1.3 and 2.0. 3. Add an upper bound in Stackage to avoid using the new persistent libraries until they're ready for primetime. 4. Release your blog post. yesod-1.4 should then remove the CPP here and only work with persistent2; the biggest "breaking change" in the 1.4 release will be remove backwards compatibility hacks for persistent, conduit, shakespeare, and wai.
92 lines
3.7 KiB
Plaintext
92 lines
3.7 KiB
Plaintext
name: yesod-auth
|
|
version: 1.3.4.2
|
|
license: MIT
|
|
license-file: LICENSE
|
|
author: Michael Snoyman, Patrick Brisbin
|
|
maintainer: Michael Snoyman <michael@snoyman.com>
|
|
synopsis: Authentication for Yesod.
|
|
category: Web, Yesod
|
|
stability: Stable
|
|
cabal-version: >= 1.6.0
|
|
build-type: Simple
|
|
homepage: http://www.yesodweb.com/
|
|
description:
|
|
This package provides a pluggable mechanism for allowing users to authenticate with your site. It comes with a number of common plugins, such as OpenID, BrowserID (a.k.a., Mozilla Persona), and email. Other packages are available from Hackage as well. If you've written such an add-on, please notify me so that it can be added to this description.
|
|
.
|
|
* <http://hackage.haskell.org/package/yesod-auth-account>: An account authentication plugin for Yesod
|
|
.
|
|
* <http://hackage.haskell.org/package/yesod-auth-hashdb>: The HashDB module previously packaged in yesod-auth, now with stronger, but compatible, security.
|
|
.
|
|
* <https://github.com/ollieh/yesod-auth-bcrypt/>: An alternative to the HashDB module.
|
|
extra-source-files: persona_sign_in_blue.png
|
|
|
|
flag network-uri
|
|
description: Get Network.URI from the network-uri package
|
|
default: True
|
|
|
|
library
|
|
build-depends: base >= 4 && < 5
|
|
, authenticate >= 1.3
|
|
, bytestring >= 0.9.1.4
|
|
, yesod-core >= 1.2 && < 1.3
|
|
, wai >= 1.4
|
|
, template-haskell
|
|
, base16-bytestring
|
|
, cryptohash
|
|
, random >= 1.0.0.2
|
|
, text >= 0.7
|
|
, mime-mail >= 0.3
|
|
, yesod-persistent >= 1.2
|
|
, hamlet >= 1.1
|
|
, shakespeare
|
|
, shakespeare-css >= 1.0
|
|
, shakespeare-js >= 1.0.2
|
|
, containers
|
|
, unordered-containers
|
|
, yesod-form >= 1.3 && < 1.4
|
|
, transformers >= 0.2.2
|
|
, persistent >= 1.2 && < 2.1
|
|
, persistent-template >= 1.2 && < 2.1
|
|
, http-conduit >= 1.5
|
|
, aeson >= 0.7
|
|
, lifted-base >= 0.1
|
|
, blaze-html >= 0.5
|
|
, blaze-markup >= 0.5.1
|
|
, http-types
|
|
, file-embed
|
|
, email-validate >= 1.0
|
|
, data-default
|
|
, resourcet
|
|
, safe
|
|
, time
|
|
, base64-bytestring
|
|
, byteable
|
|
, binary
|
|
, http-client
|
|
, blaze-builder
|
|
, conduit
|
|
, conduit-extra
|
|
, attoparsec-conduit
|
|
|
|
if flag(network-uri)
|
|
build-depends: network-uri >= 2.6
|
|
else
|
|
build-depends: network < 2.6
|
|
|
|
exposed-modules: Yesod.Auth
|
|
Yesod.Auth.BrowserId
|
|
Yesod.Auth.Dummy
|
|
Yesod.Auth.Email
|
|
Yesod.Auth.OpenId
|
|
Yesod.Auth.Rpxnow
|
|
Yesod.Auth.Message
|
|
Yesod.Auth.GoogleEmail
|
|
Yesod.Auth.GoogleEmail2
|
|
other-modules: Yesod.Auth.Routes
|
|
Yesod.PasswordStore
|
|
ghc-options: -Wall
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/yesodweb/yesod
|