-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpubsub.cabal
59 lines (53 loc) · 1.3 KB
/
pubsub.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
cabal-version: 2.4
name: pubsub
version: 0.1.0.0
copyright: 2024 Malte neuss
category: Web
synopsis: Async message passing
common shared
default-language: GHC2021
default-extensions:
DataKinds
DerivingStrategies
DisambiguateRecordFields
ExplicitNamespaces
GADTs
ImportQualifiedPost
LambdaCase
MonoLocalBinds
OverloadedStrings
RoleAnnotations
-- simulate GHC2024, https://downloads.haskell.org/ghc/9.10.1/docs/users_guide/9.10.1-notes.html
ghc-options:
-Wall -Wincomplete-record-updates -Wincomplete-uni-patterns
-Wmissing-deriving-strategies -Wunused-foralls -Wunused-foralls
-fprint-explicit-foralls -fprint-explicit-kinds
build-depends:
, aeson
, base
, binary
, bytestring
, case-insensitive
, containers
, data-default
, monad-logger
, mtl
, path-pieces
, persistent
, persistent-postgresql
, postgresql-simple
, resource-pool
, text
, time
, uuid
, zlib
-- , base >=4.13.0.0 && <4.18.0.0.0
hs-source-dirs: src
executable pubsubskiplocked
import: shared
main-is: PubsubSkipLocked.hs
other-modules: Pubsub.PubsubModels
executable pubsub
import: shared
main-is: Pubsub.hs
other-modules: Pubsub.PubsubModels