1
Fork 0

Relax dependency of base, to enable use of stack in combination of GHC 8.

This commit is contained in:
Han Joosten 2016-06-07 11:02:59 +02:00
parent 7f08e51c74
commit da83bba812

View file

@ -39,7 +39,7 @@ library
Language.SQL.SimpleSQL.Combinators, Language.SQL.SimpleSQL.Combinators,
Language.SQL.SimpleSQL.Dialect Language.SQL.SimpleSQL.Dialect
other-extensions: TupleSections other-extensions: TupleSections
build-depends: base >=4.5 && <4.9, build-depends: base ,
parsec >=3.1 && <3.2, parsec >=3.1 && <3.2,
mtl >=2.1 && <2.3, mtl >=2.1 && <2.3,
pretty >= 1.1 && < 1.2 pretty >= 1.1 && < 1.2
@ -52,7 +52,7 @@ Test-Suite Tests
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
main-is: RunTests.lhs main-is: RunTests.lhs
hs-source-dirs: .,tools hs-source-dirs: .,tools
Build-Depends: base >=4.5 && <4.9, Build-Depends: base ,
parsec >=3.1 && <3.2, parsec >=3.1 && <3.2,
mtl >=2.1 && <2.3, mtl >=2.1 && <2.3,
pretty >= 1.1 && < 1.2, pretty >= 1.1 && < 1.2,
@ -93,7 +93,7 @@ Test-Suite Tests
executable SimpleSqlParserTool executable SimpleSqlParserTool
main-is: SimpleSqlParserTool.lhs main-is: SimpleSqlParserTool.lhs
hs-source-dirs: .,tools hs-source-dirs: .,tools
Build-Depends: base >=4.5 && <4.9, Build-Depends: base ,
parsec >=3.1 && <3.2, parsec >=3.1 && <3.2,
mtl >=2.1 && <2.3, mtl >=2.1 && <2.3,
pretty >= 1.1 && < 1.2, pretty >= 1.1 && < 1.2,
@ -109,7 +109,7 @@ executable SimpleSqlParserTool
executable Fixity executable Fixity
main-is: Fixity.lhs main-is: Fixity.lhs
hs-source-dirs: .,tools hs-source-dirs: .,tools
Build-Depends: base >=4.5 && <4.9, Build-Depends: base ,
parsec >=3.1 && <3.2, parsec >=3.1 && <3.2,
mtl >=2.1 && <2.3, mtl >=2.1 && <2.3,
pretty >= 1.1 && < 1.2, pretty >= 1.1 && < 1.2,