1
Fork 0

update dependencies

This commit is contained in:
Jake Wheat 2017-06-27 23:07:56 +03:00
parent efcb0f78d1
commit 57e5004328
2 changed files with 9 additions and 9 deletions

4
README
View file

@ -1,5 +1,5 @@
A parser for SQL queries in Haskell. A parser for SQL queries in Haskell.
Homepage: http://jakewheat.github.io/simple-sql-parser/ Homepage: http://jakewheat.github.io/simple-sql-parser/latest
Contact: jakewheatmail@gmail.com Contact: jakewheatmail@gmail.com

View file

@ -1,12 +1,12 @@
name: simple-sql-parser name: simple-sql-parser
version: 0.4.2 version: 0.4.3
synopsis: A parser for SQL queries synopsis: A parser for SQL queries
description: A parser for SQL queries. Parses most SQL:2011 description: A parser for SQL queries. Parses most SQL:2011
queries. Please see the homepage for more information queries. Please see the homepage for more information
<http://jakewheat.github.io/simple-sql-parser/>. <http://jakewheat.github.io/simple-sql-parser/latest>.
homepage: http://jakewheat.github.io/simple-sql-parser/ homepage: http://jakewheat.github.io/simple-sql-parser/latest
license: BSD3 license: BSD3
license-file: LICENSE license-file: LICENSE
author: Jake Wheat author: Jake Wheat
@ -33,7 +33,7 @@ library
Other-Modules: Language.SQL.SimpleSQL.Errors, Other-Modules: Language.SQL.SimpleSQL.Errors,
Language.SQL.SimpleSQL.Combinators Language.SQL.SimpleSQL.Combinators
other-extensions: TupleSections other-extensions: TupleSections
build-depends: base >=4.5 && <4.10, 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
@ -46,12 +46,12 @@ 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.10, 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,
HUnit >= 1.2 && < 1.4, HUnit >= 1.2 && < 1.7,
test-framework >= 0.8 && < 0.9, test-framework >= 0.8 && < 0.9,
test-framework-hunit >= 0.3 && < 0.4 test-framework-hunit >= 0.3 && < 0.4
@ -82,7 +82,7 @@ Test-Suite Tests
executable SQLIndent executable SQLIndent
main-is: SQLIndent.lhs main-is: SQLIndent.lhs
hs-source-dirs: .,tools hs-source-dirs: .,tools
Build-Depends: base >=4.5 && <4.10, 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