diff --git a/yesod/Yesod.hs b/yesod/Yesod.hs index 6fc6ee98..7724a345 100644 --- a/yesod/Yesod.hs +++ b/yesod/Yesod.hs @@ -7,8 +7,6 @@ module Yesod , module Yesod.Form , module Yesod.Json , module Yesod.Persist - , module Yesod.Settings - , module Yesod.Main -- * Running your application , warp , warpDebug @@ -48,8 +46,6 @@ import Text.Julius import Yesod.Form import Yesod.Json import Yesod.Persist -import Yesod.Settings -import Yesod.Main import Network.Wai (Application) import Network.Wai.Middleware.Debug import Control.Monad.Trans.Class (lift) diff --git a/yesod/yesod.cabal b/yesod/yesod.cabal index 37c0634a..94a340d4 100644 --- a/yesod/yesod.cabal +++ b/yesod/yesod.cabal @@ -74,15 +74,9 @@ library , hamlet >= 0.10 && < 0.11 , shakespeare-js >= 0.10 && < 0.11 , shakespeare-css >= 0.10 && < 0.11 - , shakespeare-text >= 0.10 && < 0.11 , warp >= 0.4 && < 0.5 , blaze-html >= 0.4 && < 0.5 - , cmdargs >= 0.8 && < 0.9 - , data-object >= 0.3 && < 0.4 - , data-object-yaml >= 0.3 && < 0.4 exposed-modules: Yesod - Yesod.Settings - Yesod.Main ghc-options: -Wall executable yesod