packages feed

database-migrate-0.0.3: database-migrate.cabal

Name:               database-migrate
Version:            0.0.3
License:            BSD3
License-File:       LICENSE
Author:             Mark Hibberd <mark@hibberd.id.au>
Maintainer:         Mark Hibberd <mark@hibberd.id.au>
Copyright:          (c) 2012 Mark Hibberd
Synopsis:           Database versioning and migration
Category:           Database
Homepage:           https://github.com/markhibberd/database-migrate
Bug-reports:           https://github.com/markhibberd/database-migrate/issues
Cabal-Version:      >= 1.8
Build-Type:         Simple
Description:
  A database versioning and migration library.
  .
  /Note/: This library is under heavy development, currently
  the PostgreSQL implementation is functional, but
  expected to change. It is intended that a type safe
  migration api, command line tools and MySql support be added
  before this library will be considered stable.

Source-Repository   head
  Type:             git
  Location:         https://github.com/markhibberd/migrate.git

Flag                small_base
  Description:      Choose the new, split-up base package.

Library
  Build-Depends:
                    base                            >= 3          && < 5
                    , text                          >= 0.11       && < 0.12
                    , directory                     >= 1.0        && < 2.0
                    , filepath                      >= 1.0        && < 2.0
                    , bytestring                    >= 0.9        && < 0.10
                    , time                          >= 1.0        && < 2.0
                    , postgresql-simple             == 0.1.4.3
                    , containers                    >= 0.4        && < 0.5
                    , either                        >= 3.0.2      && < 4.0
                    , transformers                  >= 0.2        && < 0.4
                    , cmdargs                       >= 0.9.3      && < 1.0.0

  GHC-Options:
                    -Wall -fno-warn-orphans

  Hs-Source-Dirs:
                    src

  Exposed-Modules:
                    Database.Migrate
                    Database.Migrate.Main
                    Database.Migrate.Core
                    Database.Migrate.PostgreSQL

  Extensions:
                    MultiParamTypeClasses
                    OverloadedStrings