From 742ff027ba81669764a88239a55f43fff639aed9 Mon Sep 17 00:00:00 2001 From: Joe Nelson Date: Thu, 6 Nov 2014 15:35:17 -0800 Subject: [PATCH] Require warp >= 3.0.2 for setServerName Fixes #94 --- dbapi.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbapi.cabal b/dbapi.cabal index ee832720a..1ff77708b 100644 --- a/dbapi.cabal +++ b/dbapi.cabal @@ -16,7 +16,7 @@ executable dbapi default-extensions: OverloadedStrings build-depends: base >=4.6 && <5 , HDBC, HDBC-postgresql - , warp, wai >= 3.0.1 && < 3.0.2 + , warp >= 3.0.2, wai >= 3.0.1 , wai-extra, wai-cors , wai-middleware-static >= 0.6.0 , HTTP, convertible, http-types @@ -52,7 +52,7 @@ Test-Suite spec Build-Depends: base, hspec2, QuickCheck , hspec-wai >= 0.5.0, hspec-wai-json , HDBC, HDBC-postgresql - , warp, wai >= 3.0.1 && < 3.0.2 + , warp >= 3.0.2, wai >= 3.0.1 , HTTP, convertible , case-insensitive , wai-extra, wai-cors, containers