From 59753521a214e649cac38bb9f41ca8787baf67ae Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 11 Apr 2010 13:20:04 -0700 Subject: [PATCH] transformers 0.2 --- Web/Authenticate/OpenId.hs | 2 +- Web/Authenticate/Rpxnow.hs | 2 +- authenticate.cabal | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Web/Authenticate/OpenId.hs b/Web/Authenticate/OpenId.hs index 651ff98c..d5409f34 100644 --- a/Web/Authenticate/OpenId.hs +++ b/Web/Authenticate/OpenId.hs @@ -23,7 +23,7 @@ module Web.Authenticate.OpenId import Network.HTTP.Wget import Text.HTML.TagSoup import Numeric (showHex) -import Control.Monad.Trans +import Control.Monad.IO.Class import qualified Safe.Failure as A import Data.Generics import Control.Failure hiding (Error) diff --git a/Web/Authenticate/Rpxnow.hs b/Web/Authenticate/Rpxnow.hs index 472a8d9d..f73d5071 100644 --- a/Web/Authenticate/Rpxnow.hs +++ b/Web/Authenticate/Rpxnow.hs @@ -20,7 +20,7 @@ module Web.Authenticate.Rpxnow import Text.JSON -- FIXME use Data.Object.JSON import Network.HTTP.Wget import Data.Maybe (isJust, fromJust) -import Control.Monad.Trans +import Control.Monad.IO.Class import Control.Failure -- | Information received from Rpxnow after a valid login. diff --git a/authenticate.cabal b/authenticate.cabal index 1bf9b560..cd94350a 100644 --- a/authenticate.cabal +++ b/authenticate.cabal @@ -1,5 +1,5 @@ name: authenticate -version: 0.4.0.1 +version: 0.6.0 license: BSD3 license-file: LICENSE author: Michael Snoyman @@ -16,11 +16,11 @@ homepage: http://github.com/snoyberg/authenticate/tree/master library build-depends: base >= 4 && < 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, failure >= 0.0.0 && < 0.1, safe-failure >= 0.4 && < 0.5, - transformers >= 0.1.4.0 && < 0.2, + transformers >= 0.2 && < 0.3, syb exposed-modules: Web.Authenticate.Rpxnow, Web.Authenticate.OpenId