forked from ameingast/postgresql-simple-migration
-
Notifications
You must be signed in to change notification settings - Fork 1
/
postgresql-simple-migration.cabal
75 lines (67 loc) · 3.79 KB
/
postgresql-simple-migration.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: postgresql-simple-migration
version: 0.1.15.0
synopsis: PostgreSQL Schema Migrations
homepage: https://github.com/ameingast/postgresql-simple-migration
Bug-reports: https://github.com/ameingast/postgresql-simple-migration/issues
license: BSD3
license-file: License
author: Andreas Meingast <[email protected]>
maintainer: Andreas Meingast <[email protected]>
copyright: 2014-2016, Andreas Meingast
category: Database
build-type: Simple
cabal-version: >= 1.10
description: A PostgreSQL-simple schema migration utility
extra-source-files: License
Readme.markdown
Changelog.markdown
src/*.hs
src/Database/PostgreSQL/Simple/*.hs
test/*.hs
test/Database/PostgreSQL/Simple/*.hs
share/test/*.sql
share/test/scripts/*.sql
source-repository head
type: git
location: git://github.com/ameingast/postgresql-simple-migration
Library
exposed-modules: Database.PostgreSQL.Simple.Migration
Database.PostgreSQL.Simple.Util
hs-source-dirs: src
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
default-extensions: OverloadedStrings, CPP, LambdaCase
default-language: Haskell2010
build-depends: base >= 4.6 && < 5.0,
base64-bytestring >= 1.0 && < 1.1,
bytestring >= 0.10 && < 0.11,
cryptohash >= 0.11 && < 0.12,
directory >= 1.2 && < 1.4,
postgresql-simple >= 0.4 && < 0.7,
time >= 1.4 && < 1.10
Executable migrate
main-is: Main.hs
hs-source-dirs: src
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
default-extensions: OverloadedStrings, CPP, LambdaCase
default-language: Haskell2010
build-depends: base >= 4.6 && < 5.0,
base64-bytestring >= 1.0 && < 1.1,
bytestring >= 0.10 && < 0.11,
cryptohash >= 0.11 && < 0.12,
directory >= 1.2 && < 1.4,
postgresql-simple >= 0.4 && < 0.7,
time >= 1.4 && < 1.10,
text >= 1.2 && < 1.3
test-suite tests
main-is: Main.hs
hs-source-dirs: test
other-modules: Database.PostgreSQL.Simple.MigrationTest
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
default-extensions: OverloadedStrings, CPP, LambdaCase
default-language: Haskell2010
type: exitcode-stdio-1.0
build-depends: base >= 4.6 && < 5.0,
bytestring >= 0.10 && < 0.11,
postgresql-simple >= 0.4 && < 0.7,
hspec >= 2.2 && < 2.8,
postgresql-simple-migration