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/
|
2013-04-13 14:24:06 +04:00
|
|
|
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
|
2013-04-13 14:24:06 +04:00
|
|
|
category: Database
|
|
|
|
build-type: Simple
|
2014-12-10 06:30:10 +03:00
|
|
|
cabal-version: >=1.10
|
2017-07-17 05:31:55 +03:00
|
|
|
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
|
2017-04-07 08:37:45 +03:00
|
|
|
extra-source-files: ChangeLog.md
|
2013-04-13 14:24:06 +04:00
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules:
|
|
|
|
Database.Record.FromSql
|
|
|
|
Database.Record.ToSql
|
|
|
|
Database.Record.Persistable
|
2017-03-19 11:43:35 +03:00
|
|
|
Database.Record.TupleInstances
|
2013-05-15 05:48:30 +04:00
|
|
|
Database.Record.Instances
|
2013-04-13 14:24:06 +04:00
|
|
|
Database.Record.KeyConstraint
|
2013-05-09 13:42:20 +04:00
|
|
|
Database.Record
|
2013-05-07 13:52:45 +04:00
|
|
|
Database.Record.TH
|
2013-04-13 14:24:06 +04:00
|
|
|
|
2017-03-19 11:18:49 +03:00
|
|
|
other-modules:
|
|
|
|
Database.Record.InternalTH
|
|
|
|
|
2013-04-13 14:24:06 +04:00
|
|
|
build-depends: base <5
|
2013-05-07 13:52:45 +04:00
|
|
|
, template-haskell
|
2016-06-14 03:47:32 +03:00
|
|
|
, th-data-compat
|
2017-09-15 15:03:02 +03:00
|
|
|
, product-isomorphic >= 0.0.3
|
2013-06-19 14:52:38 +04:00
|
|
|
, array
|
|
|
|
, containers
|
2014-07-11 21:08:36 +04:00
|
|
|
, transformers
|
|
|
|
, dlist
|
2013-05-07 13:52:45 +04:00
|
|
|
, names-th
|
2017-04-08 22:44:05 +03:00
|
|
|
if impl(ghc == 7.4.*)
|
2017-02-21 19:10:34 +03:00
|
|
|
build-depends: ghc-prim == 0.2.*
|
|
|
|
|
2013-04-13 14:24:06 +04:00
|
|
|
hs-source-dirs: src
|
2013-05-29 19:44:40 +04:00
|
|
|
ghc-options: -Wall
|
2014-12-10 06:30:10 +03:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
2017-02-19 10:38:12 +03:00
|
|
|
test-suite nested
|
|
|
|
build-depends: base <5
|
|
|
|
, quickcheck-simple
|
|
|
|
, persistable-record
|
2017-04-08 22:44:05 +03:00
|
|
|
if impl(ghc == 7.4.*)
|
2017-03-10 16:40:05 +03:00
|
|
|
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
|