haskell-relational-record/DB-record/DB-record.cabal

31 lines
1.1 KiB
Plaintext
Raw Normal View History

name: DB-record
version: 0.0.1.0
2013-05-16 12:38:34 +04:00
synopsis: Binding between SQL database values and haskell records.
description: This package contiains type constrains and generic instances
to bind between SQL database values and haskell records.
homepage: http://twitter.com/khibino
license: BSD3
license-file: LICENSE
author: Kei Hibino
maintainer: ex8k.hibino@gmail.com
copyright: Copyright (c) 2013 Kei Hibino
category: Database
build-type: Simple
cabal-version: >=1.8
library
exposed-modules:
Database.Record.FromSql
Database.Record.ToSql
Database.Record.Persistable
2013-05-15 05:48:30 +04:00
Database.Record.Instances
Database.Record.KeyConstraint
Database.Record.Singleton
2013-05-09 13:42:20 +04:00
Database.Record
Database.Record.TH
build-depends: base <5
, template-haskell
, names-th
hs-source-dirs: src