diff --git a/antagonist.cabal b/antagonist.cabal
--- a/antagonist.cabal
+++ b/antagonist.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.1.0.25
+version:             0.1.0.26
 
 -- A short (one-line) description of the package.
 synopsis:            A web interface to Antisplice dungeons.
@@ -50,7 +50,7 @@
 
 library
   exposed-modules: Web.Antagonist.Server, Web.Antagonist.Server.Data
-  build-depends:       base >=4.6 && <4.8, yesod >=1.2 && <1.3, antisplice >=0.17 && <0.18, text >=1.1 && <1.2, chatty >=0.6 && <0.7, chatty-utils >=0.7 && <0.8, shakespeare >=2.0 && <2.1, mtl >=2.1 && <2.2, time >=1.4 && <1.5, old-locale >=1.0 && <1.1, yesod-auth >=1.3 && <1.4
+  build-depends:       base >=4.6 && <4.9, yesod >=1.2 && <1.5, antisplice >=0.17.1 && <0.18, text >=1.1 && <1.4, chatty >=0.6.4 && <0.7, chatty-utils >=0.7 && <0.8, shakespeare >=2.0 && <2.1, mtl >=2.1 && <2.3, time >=1.4 && <1.6, old-locale >=1.0 && <1.1, yesod-auth >=1.3 && <1.5
   default-language: Haskell2010
   hs-source-dirs:   shared, server, .
 
@@ -65,7 +65,7 @@
   -- other-extensions:    
   
   -- Other library packages from which modules are imported.
-  build-depends:       base >=4.6 && <4.8, yesod >=1.2 && <1.3, antisplice >=0.17 && <0.18, text >=1.1 && <1.2, chatty >=0.6 && <0.7, chatty-utils >=0.7 && <0.8, shakespeare >=2.0 && <2.1, mtl >=2.1 && <2.2, ironforge >=0.1 && <0.2, time >=1.4 && <1.5, old-locale >=1.0 && <1.1, yesod-auth >=1.3 && <1.4
+  build-depends:       base >=4.6 && <4.9, yesod >=1.2 && <1.5, antisplice >=0.17.1 && <0.18, text >=1.1 && <1.4, chatty >=0.6.4 && <0.7, chatty-utils >=0.7 && <0.8, shakespeare >=2.0 && <2.1, mtl >=2.1 && <2.3, ironforge >=0.1 && <0.2, time >=1.4 && <1.6, old-locale >=1.0 && <1.1, yesod-auth >=1.3 && <1.5
   
   -- Directories containing source files.
   hs-source-dirs:      shared, server, .
diff --git a/ironforge-yesod.hs b/ironforge-yesod.hs
--- a/ironforge-yesod.hs
+++ b/ironforge-yesod.hs
@@ -1,10 +1,11 @@
-{-# LANGUAGE QuasiQuotes, TemplateHaskell, TypeFamilies, MultiParamTypeClasses #-}
+{-# LANGUAGE QuasiQuotes, TemplateHaskell, TypeFamilies, MultiParamTypeClasses, OverloadedStrings #-}
 
 import Game.Antisplice.Dungeon.Ironforge
 import Web.Antagonist.Server
 import Data.Chatty.AVL
 import Data.IORef
 import Text.Hamlet
+import qualified Data.Text as T
 import Yesod
 
 data Master = Master { getSingleUserSub :: SingleUserSub }
@@ -21,7 +22,7 @@
 
 getHomeR :: HandlerT Master IO Html
 getHomeR = defaultLayout $ do
-  setTitle $ toHtml "Antisplice-Web"
+  setTitle $ toHtml ("Antisplice-Web" :: T.Text)
   toWidget $ $(hamletFile "home.htm")
 
 main = do
diff --git a/server/Web/Antagonist/Server/Data.hs b/server/Web/Antagonist/Server/Data.hs
--- a/server/Web/Antagonist/Server/Data.hs
+++ b/server/Web/Antagonist/Server/Data.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE QuasiQuotes, TemplateHaskell, TypeFamilies, RankNTypes, FlexibleContexts #-}
+{-# LANGUAGE QuasiQuotes, TemplateHaskell, TypeFamilies, RankNTypes, FlexibleContexts, OverloadedStrings #-}
 
 -- | Datatypes for a subsite serving a single-user dungeon.
 module Web.Antagonist.Server.Data where
