-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
55 lines (50 loc) · 1.62 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
48
49
50
51
52
53
54
55
name: dbmonitor
version: 0.1.0
github: "viviag/dbmonitor"
license: BSD3
author: "Vitalii Guzeev"
maintainer: "[email protected]"
copyright: "2021-2022 Vitalii Guzeev"
extra-source-files:
- README.md
- CHANGELOG.md
synopsis: Data consistency alerting for PostgreSQL
category: Monitoring, Database
description: Tool performing periodic checks of data invariants which are hard or impossible to be imposed by constraints. For Postgres only.
dependencies:
- ansi-terminal >= 0.11.3 && < 0.12
- base >= 4.12.0 && <= 4.15.1.0
- async >= 2.2.2 && < 2.3
- bytestring >= 0.10.8 && < 0.11
- text >= 1.2.3 && < 1.3
- stm >= 2.5.0 && < 2.6
- dhall >= 1.40.2 && < 1.42
- time >= 1.8.0 && <= 1.9.3
- unordered-containers >= 0.2.10 && < 0.3
- vector >= 0.12.0 && < 0.13
- filepath >= 1.4.2 && < 1.5
- directory >= 1.3.3 && < 1.4
- mtl >= 2.2.2 && < 2.3
- optparse-applicative >= 0.16.1.0 && < 0.18
- hasql >= 1.4.4 && <= 1.5.0.5
- fsnotify >= 0.3.0 && < 0.4
- lifted-base >= 0.2.3 && < 0.3
- monad-control >= 1.0.3 && < 1.1
- transformers-base >= 0.4.6 && < 0.5
- telegram-bot-simple >= 0.4.5 && < 0.6
library:
source-dirs: src
ghc-options:
- -Wall
executables:
dbmonitor:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
# - -eventlog
- -rtsopts
- -with-rtsopts=-N
- -Wall
dependencies:
- dbmonitor