packages feed

qudb-0.0.0: qudb.cabal

Name:                qudb
Version:             0.0.0
Synopsis:            Quite Useless DB
Description:
  QUDB is a simple relational database meant to be a Haskell equivalent of
  the SQLite executable. It currently supports a minimal subset of SQL. See the
  `test` directory for examples of accepted queries.
Homepage:            https://github.com/jstepien/qudb
Bug-reports:         https://github.com/jstepien/qudb/issues
License:             LGPL-3
License-file:        LICENSE
Author:              Piotr Monarski, Jan Stępień
Maintainer:          Jan Stępień
Category:            Database
Build-type:          Simple
Extra-source-files:
  README.mkd
  test/*.sql
  test/Test.lhs
Cabal-version:       >= 1.8

Executable qudb
  Main-is: qudb/qudb.hs
  Build-depends: base >= 3 && < 5, array, bytestring, snappy, deepseq, directory
  Other-modules: Database.QUDB,
                 Database.QUDB.Scanner,
                 Database.QUDB.Parser,
                 Database.QUDB.Structure,
                 Database.QUDB.Query,
                 Database.QUDB.EntityTypes
  Build-tools: happy, alex >= 3

source-repository head
  type:     git
  location: git://github.com/jstepien/qudb.git