-
Notifications
You must be signed in to change notification settings - Fork 2
/
pg-transact-effectful.cabal
62 lines (54 loc) · 1.53 KB
/
pg-transact-effectful.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
cabal-version: 3.0
name: pg-transact-effectful
version: 0.0.1.0
homepage: https://github.com/kleidukos/pg-transact-effectful/
bug-reports: https://github.com/kleidukos/pg-transact-effectful/issues
author: Hécate Moonlight
maintainer: Hécate Moonlight
license: MIT
build-type: Simple
extra-source-files:
CHANGELOG.md
LICENSE.md
README.md
tested-with:
GHC ==9.4.7 || ==9.6.3
source-repository head
type: git
location: https://github.com/kleidukos/pg-transact-effectful
common common-extensions
default-extensions:
ConstraintKinds
DataKinds
FlexibleContexts
FlexibleInstances
GADTs
KindSignatures
ScopedTypeVariables
TypeApplications
TypeFamilies
TypeOperators
default-language: Haskell2010
common common-ghc-options
ghc-options:
-Wall -Wcompat -Werror -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
-fhide-source-paths -Wno-unused-do-bind
-Wno-unticked-promoted-constructors
common common-rts-options
ghc-options: -rtsopts -threaded -with-rtsopts=-N
library
import: common-extensions
import: common-ghc-options
hs-source-dirs: src
exposed-modules:
Effectful.PostgreSQL.Transact
Effectful.PostgreSQL.Transact.Effect
build-depends:
, base <4.19.0
, deepseq
, effectful-core ^>=2.3
, mtl
, pg-transact
, postgresql-simple
, resource-pool ^>=0.4