diff options
-rw-r--r-- | hakyll.cabal | 6 | ||||
-rw-r--r-- | src/Hakyll/Core/Run.hs | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/hakyll.cabal b/hakyll.cabal index 1d144f6..855c30d 100644 --- a/hakyll.cabal +++ b/hakyll.cabal @@ -37,7 +37,7 @@ License: BSD3 License-File: LICENSE Category: Web -Cabal-Version: >= 1.6 +Cabal-Version: >= 1.8 Build-Type: Simple Data-Dir: data Data-Files: @@ -136,8 +136,8 @@ Library If flag(previewServer) Build-depends: - snap-core >= 0.6 && < 0.8, - snap-server >= 0.6 && < 0.8 + snap-core >= 0.6 && < 0.9, + snap-server >= 0.6 && < 0.9 Cpp-Options: -DPREVIEW_SERVER Other-Modules: diff --git a/src/Hakyll/Core/Run.hs b/src/Hakyll/Core/Run.hs index f98259c..4384f40 100644 --- a/src/Hakyll/Core/Run.hs +++ b/src/Hakyll/Core/Run.hs @@ -6,7 +6,6 @@ module Hakyll.Core.Run ) where import Control.Applicative (Applicative, (<$>)) -import Control.Exception (handle) import Control.Monad (filterM, forM_) import Control.Monad.Error (ErrorT, runErrorT, throwError) import Control.Monad.Reader (ReaderT, runReaderT, ask) |