-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.yaml
47 lines (44 loc) · 1.17 KB
/
package.yaml
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
name: fused-effects-squeal
version: 0.1.0.0
synopsis: A fused-effects adapter for squeal-postgresql.
description: A fused-effects adapter for squeal-postgresql. It allows you to conjure `MonadPQ` instances and manage connection pools in a `fused-effects` stack.
homepage: https://github.com/ilyakooo0/fused-effects-squeal#readme
license: BSD3
author: Ilya Kostyuchenko
maintainer: [email protected]
copyright: Ilya Kostyuchenko
category: Control
extra-source-files:
- README.md
- CHANGELOG.md
dependencies:
- base >= 4.7 && < 5
- fused-effects >= 1.0.0.0
- squeal-postgresql >= 0.5.2.0
- unliftio-core
- unliftio
- unliftio-pool
library:
source-dirs: src
exposed-modules:
- Control.Carrier.Squeal
- Control.Effect.Squeal
default-extensions:
- DataKinds
- DeriveFunctor
- DeriveGeneric
- FlexibleContexts
- FlexibleInstances
- GADTs
- GeneralizedNewtypeDeriving
- MultiParamTypeClasses
- OverloadedLabels
- OverloadedStrings
- TypeApplications
- TypeOperators
- UndecidableInstances
- ScopedTypeVariables
- PolyKinds
- DerivingStrategies
- StandaloneDeriving
- LambdaCase