1
Fork 0
simple-sql-parser/simple-sql-parser.cabal
Jake Wheat ac406c077c small refactoring in the parser
factor out the integer parser for interval literals to separate lexer
refactor the app parser to include windows here instead of later on
add notes on the fixity handling
formatting in the cabal file
2013-12-14 11:23:58 +02:00

35 lines
1.3 KiB
Plaintext

name: simple-sql-parser
version: 0.1.0.0
synopsis: A parser for SQL queries
description: A parser for SQL queries, using Parsec. Also includes pretty printer. Aims to support most of SQL2003 queries plus other SQL dialects.
homepage: https://github.com/JakeWheat/simple_sql_parser
license: BSD3
license-file: LICENSE
author: Jake Wheat
maintainer: jakewheatmail@gmail.com
copyright: Copyright Jake Wheat 2013
category: Database,Language
build-type: Simple
extra-source-files: README,LICENSE
cabal-version: >=1.10
bug-reports: https://github.com/JakeWheat/simple_sql_parser/issues
source-repository head
type: git
location: https://github.com/JakeWheat/simple_sql_parser.git
library
exposed-modules: Language.SQL.SimpleSQL.Pretty,
Language.SQL.SimpleSQL.Parser,
Language.SQL.SimpleSQL.Syntax
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.7,
parsec >=3.1 && <3.2,
mtl >=2.1 && <2.2,
pretty >= 1.1 && < 1.2
-- hs-source-dirs:
default-language: Haskell2010
ghc-options: -Wall