SimpleServer 0.1.1.1 → 0.1.1.2
raw patch · 2 files changed
+7/−6 lines, 2 filesdep ~base
Dependency ranges changed: base
Files
- SimpleServer.cabal +5/−4
- src/SimpleServer.hs +2/−2
SimpleServer.cabal view
@@ -1,6 +1,6 @@ -- SimpleServer: A simple static file server, for when apache is overkill name : SimpleServer-version : 0.1.1.1+version : 0.1.1.2 synopsis : A simple static file server, for when apache is overkill description : A simple static file server, for when apache is overkill license : MIT@@ -17,8 +17,8 @@ source-repository this type : git- location : http://github.com/ajnsit/SimpleServer/tree/v0.1.1.1- tag : v0.1.1.1+ location : http://github.com/ajnsit/SimpleServer/tree/v0.1.1.2+ tag : v0.1.1.2 library@@ -35,7 +35,7 @@ executable simpleserver main-is : Main.hs- build-depends : base >= 4.7 && < 4.9+ build-depends : base >= 4.7 && < 4.10 , wai-routes , warp , cmdargs@@ -43,4 +43,5 @@ , transformers buildable : True hs-source-dirs : src+ other-modules : SimpleServer default-language : Haskell2010
src/SimpleServer.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE OverloadedStrings, DeriveDataTypeable #-} module SimpleServer-( module Network.Wai.Middleware.Routes+( module Wai.Routes , module Control.Monad.IO.Class , simpleServer )@@ -13,7 +13,7 @@ import Config.Dyre.Paths import System.Console.CmdArgs import Network.Wai.Handler.Warp-import Network.Wai.Middleware.Routes+import Wai.Routes ---------------------