diff --git a/hakyll.cabal b/hakyll.cabal index ef796bde..82496e03 100644 --- a/hakyll.cabal +++ b/hakyll.cabal @@ -194,7 +194,7 @@ Library hashable >= 1.0 && < 2, lifted-async >= 0.10 && < 1, lrucache >= 1.1.1 && < 1.3, - mtl >= 1 && < 2.3, + mtl >= 1 && < 2.4, network-uri >= 2.6 && < 2.7, optparse-applicative >= 0.12 && < 0.18, parsec >= 3.0 && < 3.2, diff --git a/lib/Hakyll/Web/Html.hs b/lib/Hakyll/Web/Html.hs index 8c9b1d9d..59876386 100644 --- a/lib/Hakyll/Web/Html.hs +++ b/lib/Hakyll/Web/Html.hs @@ -24,7 +24,8 @@ module Hakyll.Web.Html -------------------------------------------------------------------------------- -import Control.Monad.Identity (void, Identity(runIdentity)) +import Control.Monad (void) +import Control.Monad.Identity (Identity(runIdentity)) import Data.Char (digitToInt, intToDigit, isDigit, toLower) import Data.Either (fromRight)