From efcb0f78d10b8cd8f3eda269a8c2232c26dedb73 Mon Sep 17 00:00:00 2001 From: Jake Wheat Date: Tue, 12 Jul 2016 09:58:34 +0300 Subject: [PATCH] add dependencies back to base --- simple-sql-parser.cabal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simple-sql-parser.cabal b/simple-sql-parser.cabal index f68bc58..c386281 100644 --- a/simple-sql-parser.cabal +++ b/simple-sql-parser.cabal @@ -33,7 +33,7 @@ library Other-Modules: Language.SQL.SimpleSQL.Errors, Language.SQL.SimpleSQL.Combinators other-extensions: TupleSections - build-depends: base, + build-depends: base >=4.5 && <4.10, parsec >=3.1 && <3.2, mtl >=2.1 && <2.3, pretty >= 1.1 && < 1.2 @@ -46,7 +46,7 @@ Test-Suite Tests type: exitcode-stdio-1.0 main-is: RunTests.lhs hs-source-dirs: .,tools - Build-Depends: base, + Build-Depends: base >=4.5 && <4.10, parsec >=3.1 && <3.2, mtl >=2.1 && <2.3, pretty >= 1.1 && < 1.2, @@ -82,7 +82,7 @@ Test-Suite Tests executable SQLIndent main-is: SQLIndent.lhs hs-source-dirs: .,tools - Build-Depends: base, + Build-Depends: base >=4.5 && <4.10, parsec >=3.1 && <3.2, mtl >=2.1 && <2.3, pretty >= 1.1 && < 1.2