transformers 0.2

This commit is contained in:
Michael Snoyman 2010-04-11 13:20:04 -07:00
parent ad243856a2
commit 59753521a2
3 changed files with 5 additions and 5 deletions

View File

@ -23,7 +23,7 @@ module Web.Authenticate.OpenId
import Network.HTTP.Wget import Network.HTTP.Wget
import Text.HTML.TagSoup import Text.HTML.TagSoup
import Numeric (showHex) import Numeric (showHex)
import Control.Monad.Trans import Control.Monad.IO.Class
import qualified Safe.Failure as A import qualified Safe.Failure as A
import Data.Generics import Data.Generics
import Control.Failure hiding (Error) import Control.Failure hiding (Error)

View File

@ -20,7 +20,7 @@ module Web.Authenticate.Rpxnow
import Text.JSON -- FIXME use Data.Object.JSON import Text.JSON -- FIXME use Data.Object.JSON
import Network.HTTP.Wget import Network.HTTP.Wget
import Data.Maybe (isJust, fromJust) import Data.Maybe (isJust, fromJust)
import Control.Monad.Trans import Control.Monad.IO.Class
import Control.Failure import Control.Failure
-- | Information received from Rpxnow after a valid login. -- | Information received from Rpxnow after a valid login.

View File

@ -1,5 +1,5 @@
name: authenticate name: authenticate
version: 0.4.0.1 version: 0.6.0
license: BSD3 license: BSD3
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com> author: Michael Snoyman <michael@snoyman.com>
@ -16,11 +16,11 @@ homepage: http://github.com/snoyberg/authenticate/tree/master
library library
build-depends: base >= 4 && < 5, build-depends: base >= 4 && < 5,
json >= 0.4.3 && < 0.5, json >= 0.4.3 && < 0.5,
http-wget >= 0.4.0 && < 0.5, http-wget >= 0.6 && < 0.7,
tagsoup >= 0.6 && < 0.9, tagsoup >= 0.6 && < 0.9,
failure >= 0.0.0 && < 0.1, failure >= 0.0.0 && < 0.1,
safe-failure >= 0.4 && < 0.5, safe-failure >= 0.4 && < 0.5,
transformers >= 0.1.4.0 && < 0.2, transformers >= 0.2 && < 0.3,
syb syb
exposed-modules: Web.Authenticate.Rpxnow, exposed-modules: Web.Authenticate.Rpxnow,
Web.Authenticate.OpenId Web.Authenticate.OpenId