-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhasql-migration.cabal
58 lines (53 loc) · 2.65 KB
/
hasql-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
name: hasql-migration
version: 0.3.1
synopsis: PostgreSQL Schema Migrations
homepage: https://github.com/tvh/hasql-migration
Bug-reports: https://github.com/tvh/hasql-migration/issues
license: BSD3
license-file: License
author: Timo von Holtz <[email protected]>
maintainer: Timo von Holtz <[email protected]>
copyright: Timo von Holtz, Andreas Meingast, Sumit Raja
category: Database
build-type: Simple
cabal-version: >= 1.10
description: A hasql schema migration utility
extra-source-files: License
Readme.markdown
test/*.hs
test/Hasql/*.hs
share/test/*.sql
share/test/scripts/*.sql
source-repository head
type: git
location: git://github.com/tvh/hasql-migration
library
exposed-modules: Hasql.Migration
Hasql.Migration.Util
hs-source-dirs: src
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
default-language: Haskell2010
build-depends: base >= 4.7 && < 5,
bytestring >= 0.10,
contravariant >= 1.3,
crypton >= 0.32,
directory >= 1.2,
hasql >= 1.4,
hasql-transaction >= 0.7,
memory,
text >= 1.2,
time >= 1.4
test-suite hasql-migration-test
main-is: Main.hs
hs-source-dirs: test
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
other-modules: Hasql.MigrationTest
default-language: Haskell2010
type: exitcode-stdio-1.0
build-depends: base >= 4.7 && < 5,
bytestring >= 0.10,
hasql >= 0.19,
hasql-migration,
hasql-transaction >= 0.5,
hspec >= 2.2,
transformers >= 0.3