forked from diogob/postgres-websockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postgres-websockets.cabal
105 lines (99 loc) · 4.42 KB
/
postgres-websockets.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: postgres-websockets
version: 0.11.2.1
synopsis: Middleware to map LISTEN/NOTIFY messages to Websockets
description: WAI middleware that adds websockets capabilites on top of PostgreSQL's asynchronous notifications using LISTEN and NOTIFY commands. Fully functioning server included.
homepage: https://github.com/diogob/postgres-websockets#readme
license: BSD3
license-file: LICENSE
author: Diogo Biazus
maintainer: [email protected]
copyright: 2016 Diogo Biazus
category: Web, Database, PostgreSQL
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: PostgresWebsockets
, PostgresWebsockets.Broadcast
, PostgresWebsockets.HasqlBroadcast
, PostgresWebsockets.Claims
, PostgresWebsockets.Config
other-modules: Paths_postgres_websockets
, PostgresWebsockets.Server
, PostgresWebsockets.Middleware
, PostgresWebsockets.Context
build-depends: base >= 4.7 && < 5
, hasql-pool >= 0.8 && < 0.10
, text >= 1.2 && < 2.1
, wai >= 3.2 && < 4
, websockets >= 0.9 && < 0.13
, wai-websockets >= 3.0 && < 4
, http-types >= 0.9
, bytestring >= 0.10
, postgresql-libpq >= 0.9.4.2
, lens >= 4.17.1
, jose >= 0.6
, unordered-containers >= 0.2
, aeson >= 2.0 && < 2.2
, protolude >= 0.2.3 && < 0.4
, hasql >= 1.4.1
, hasql-notifications >= 0.1.0.0 && < 0.3
, either >= 5.0.1.1 && < 5.1
, stm-containers >= 1.1.0.2 && < 1.3
, stm >= 2.5.0.0 && < 2.6
, retry >= 0.8.1.0 && < 0.10
, time >= 1.8.0.2 && < 1.13
, alarmclock >= 0.7.0.2 && < 0.8
, envparse >= 0.4.1
, base64-bytestring >= 1.0.0.3 && < 1.3
, bytestring >= 0.10
, warp >= 3.2 && < 4
, warp-tls >= 3.2 && < 4
, wai-extra >= 3.0.29 && < 3.2
, wai-app-static >= 3.1.7.1 && < 3.2
, auto-update >= 0.1.6 && < 0.2
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude, LambdaCase, RecordWildCards
executable postgres-websockets
hs-source-dirs: app
main-is: Main.hs
other-modules:
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base >= 4.7 && < 5
, postgres-websockets
, protolude >= 0.2.3 && < 0.4
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude, QuasiQuotes
test-suite postgres-websockets-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: BroadcastSpec
, ClaimsSpec
, HasqlBroadcastSpec
, ServerSpec
build-depends: base
, protolude >= 0.2.3 && < 0.4
, postgres-websockets
, hspec >= 2.7.1 && < 2.11
, aeson >= 2.0 && < 2.2
, hasql >= 0.19
, hasql-pool >= 0.8 && < 0.10
, hasql-notifications >= 0.1.0.0 && < 0.3
, http-types >= 0.9
, time >= 1.8.0.2 && < 1.13
, unordered-containers >= 0.2
, wai-extra >= 3.0.29 && < 3.2
, stm >= 2.5.0.0 && < 2.6
, websockets >= 0.12.7.0 && < 0.13
, network >= 2.8.0.1 && < 3.2
, lens >= 4.17.1 && < 5.3
, lens-aeson
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude
source-repository head
type: git
location: https://github.com/diogob/postgres-websockets