-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhasql-notifications.cabal
57 lines (52 loc) · 1.95 KB
/
hasql-notifications.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
name: hasql-notifications
version: 0.2.3.2
synopsis: LISTEN/NOTIFY support for Hasql
description: Use PostgreSQL Asynchronous notification support with your Hasql Types.
homepage: https://github.com/diogob/hasql-notifications
license: BSD3
license-file: LICENSE
author: Diogo Biazus
maintainer: [email protected]
copyright: 2020 Diogo Biazus
category: Hasql, Database, PostgreSQL
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Hasql.Notifications
build-depends: base >= 4.7 && < 5
, bytestring >= 0.10.8.2 && < 0.13
, text >= 2 && < 2.2
, hasql-pool >= 1.2 && < 1.3
, postgresql-libpq >= 0.9 && < 1.0
, hasql >= 0.19 && < 1.9
default-language: Haskell2010
ghc-options: -Wall
default-extensions: OverloadedStrings
executable hasql-notifications
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, hasql
, hasql-notifications
default-language: Haskell2010
default-extensions: OverloadedStrings
test-suite hasql-notifications-test
type: exitcode-stdio-1.0
other-modules: Hasql.NotificationsSpec
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, hasql
, hasql-notifications
, hspec
, bytestring
, QuickCheck
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions: OverloadedStrings
source-repository head
type: git
location: https://github.com/diogob/hasql-notifications