-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhsmonitor.cabal
More file actions
53 lines (48 loc) · 970 Bytes
/
hsmonitor.cabal
File metadata and controls
53 lines (48 loc) · 970 Bytes
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
cabal-version: 3.0
name: hsmonitor
version: 0.1.0.0
license: BSD-3-Clause
author: Felix Leitz
maintainer: felix.leitz@active-group.de
copyright: 2024 Active Group GmbH
category: Web
build-type: Simple
extra-source-files: README.md
common options
ghc-options: -Wall -threaded -O2 -Werror
default-language: GHC2024
library
import: options
hs-source-dirs: src
exposed-modules:
Cmd
Mail
Port
Riemann
Scheduler
Types
Webpage
build-depends:
, async
, base
, bytestring
, http-conduit
, http-types
, mime-mail
, process
, random
, smtp-mail
, time
, utf8-string
executable hsmonitor
import: options
hs-source-dirs: app
main-is: Main.hs
other-modules:
Config
Options
build-depends:
, base
, hsmonitor
, optparse-applicative
, time