haskell-relational-record/persistable-record/persistable-record.cabal

74 lines
2.6 KiB
Plaintext
Raw Normal View History

Rename package name from DB-record into persistable-record. --HG-- rename : DB-record/GNUmakefile => persistable-record/GNUmakefile rename : DB-record/LICENSE => persistable-record/LICENSE rename : DB-record/Setup.hs => persistable-record/Setup.hs rename : DB-record/debian/changelog => persistable-record/debian/changelog rename : DB-record/debian/compat => persistable-record/debian/compat rename : DB-record/debian/control => persistable-record/debian/control rename : DB-record/debian/copyright => persistable-record/debian/copyright rename : DB-record/debian/rules => persistable-record/debian/rules rename : DB-record/debian/source/format => persistable-record/debian/source/format rename : DB-record/debian/watch => persistable-record/debian/watch rename : DB-record/DB-record.cabal => persistable-record/persistable-record.cabal rename : DB-record/src/Database/Record.hs => persistable-record/src/Database/Record.hs rename : DB-record/src/Database/Record/FromSql.hs => persistable-record/src/Database/Record/FromSql.hs rename : DB-record/src/Database/Record/Instances.hs => persistable-record/src/Database/Record/Instances.hs rename : DB-record/src/Database/Record/KeyConstraint.hs => persistable-record/src/Database/Record/KeyConstraint.hs rename : DB-record/src/Database/Record/Persistable.hs => persistable-record/src/Database/Record/Persistable.hs rename : DB-record/src/Database/Record/Singleton.hs => persistable-record/src/Database/Record/Singleton.hs rename : DB-record/src/Database/Record/TH.hs => persistable-record/src/Database/Record/TH.hs rename : DB-record/src/Database/Record/ToSql.hs => persistable-record/src/Database/Record/ToSql.hs
2013-12-19 20:32:12 +04:00
name: persistable-record
2018-03-25 18:39:31 +03:00
version: 0.6.0.3
2013-05-16 12:38:34 +04:00
synopsis: Binding between SQL database values and haskell records.
2013-06-01 18:58:35 +04:00
description: This package contiains types to represent table constraints and
interfaces to bind between SQL database values and Haskell records.
2014-12-13 07:37:12 +03:00
homepage: http://khibino.github.io/haskell-relational-record/
license: BSD3
license-file: LICENSE
author: Kei Hibino
maintainer: ex8k.hibino@gmail.com
2017-02-19 09:43:12 +03:00
copyright: Copyright (c) 2013-2017 Kei Hibino
category: Database
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 8.2.1
, GHC == 8.0.1, GHC == 8.0.2
2016-06-19 05:26:23 +03:00
, GHC == 7.10.1, GHC == 7.10.2, GHC == 7.10.3
, GHC == 7.8.1, GHC == 7.8.2, GHC == 7.8.3, GHC == 7.8.4
, GHC == 7.6.1, GHC == 7.6.2, GHC == 7.6.3
, GHC == 7.4.1, GHC == 7.4.2
extra-source-files: ChangeLog.md
library
exposed-modules:
Database.Record.FromSql
Database.Record.ToSql
Database.Record.Persistable
Database.Record.TupleInstances
2013-05-15 05:48:30 +04:00
Database.Record.Instances
Database.Record.KeyConstraint
2013-05-09 13:42:20 +04:00
Database.Record
Database.Record.TH
other-modules:
Database.Record.InternalTH
build-depends: base <5
, template-haskell
2016-06-14 03:47:32 +03:00
, th-data-compat
, product-isomorphic >= 0.0.3
2013-06-19 14:52:38 +04:00
, array
, containers
, transformers
, dlist
, names-th
if impl(ghc == 7.4.*)
build-depends: ghc-prim == 0.2.*
hs-source-dirs: src
2013-05-29 19:44:40 +04:00
ghc-options: -Wall
default-language: Haskell2010
2017-02-19 10:38:12 +03:00
test-suite nested
build-depends: base <5
, quickcheck-simple
, persistable-record
if impl(ghc == 7.4.*)
build-depends: ghc-prim == 0.2.*
2017-02-19 10:38:12 +03:00
type: exitcode-stdio-1.0
main-is: nestedEq.hs
2017-03-08 06:37:54 +03:00
other-modules: Model
2017-02-19 10:38:12 +03:00
hs-source-dirs: test
ghc-options: -Wall
default-language: Haskell2010
2014-12-09 20:34:36 +03:00
source-repository head
type: git
location: https://github.com/khibino/haskell-relational-record
source-repository head
type: mercurial
location: https://bitbucket.org/khibino/haskell-relational-record