remove unused dependency on haskell-src-exts
This commit is contained in:
parent
fd42a3cd73
commit
cc2b494465
|
@ -1,3 +1,5 @@
|
||||||
|
0.4.0-dev
|
||||||
|
completely remove dependency on haskell-src-exts
|
||||||
0.3.0 (commit 9e75fa93650b4f1a08d94f4225a243bcc50445ae)
|
0.3.0 (commit 9e75fa93650b4f1a08d94f4225a243bcc50445ae)
|
||||||
fix the basic operator fixity parsing
|
fix the basic operator fixity parsing
|
||||||
swap the order in select item abstract syntax so it is now
|
swap the order in select item abstract syntax so it is now
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: simple-sql-parser
|
name: simple-sql-parser
|
||||||
version: 0.3.0
|
version: 0.4.0
|
||||||
synopsis: A parser for SQL queries
|
synopsis: A parser for SQL queries
|
||||||
description: A parser for SQL queries. Please see the homepage for more information <http://jakewheat.github.io/simple-sql-parser/>.
|
description: A parser for SQL queries. Please see the homepage for more information <http://jakewheat.github.io/simple-sql-parser/>.
|
||||||
|
|
||||||
|
@ -44,7 +44,6 @@ Test-Suite Tests
|
||||||
parsec >=3.1 && <3.2,
|
parsec >=3.1 && <3.2,
|
||||||
mtl >=2.1 && <2.2,
|
mtl >=2.1 && <2.2,
|
||||||
pretty >= 1.1 && < 1.2,
|
pretty >= 1.1 && < 1.2,
|
||||||
haskell-src-exts >= 1.14 && < 1.15,
|
|
||||||
|
|
||||||
HUnit >= 1.2 && < 1.3,
|
HUnit >= 1.2 && < 1.3,
|
||||||
test-framework >= 0.8 && < 0.9,
|
test-framework >= 0.8 && < 0.9,
|
||||||
|
@ -75,8 +74,7 @@ executable SQLIndent
|
||||||
Build-Depends: base >=4.6 && <4.7,
|
Build-Depends: base >=4.6 && <4.7,
|
||||||
parsec >=3.1 && <3.2,
|
parsec >=3.1 && <3.2,
|
||||||
mtl >=2.1 && <2.2,
|
mtl >=2.1 && <2.2,
|
||||||
pretty >= 1.1 && < 1.2,
|
pretty >= 1.1 && < 1.2
|
||||||
haskell-src-exts >= 1.14 && < 1.15
|
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
ghc-options: -Wall
|
ghc-options: -Wall
|
||||||
if flag(sqlindent)
|
if flag(sqlindent)
|
||||||
|
|
Loading…
Reference in a new issue