-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtelegram-assistant.cabal
More file actions
42 lines (36 loc) · 925 Bytes
/
telegram-assistant.cabal
File metadata and controls
42 lines (36 loc) · 925 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
cabal-version: 3.0
name: telegram-assistant
version: 0.0.0.0
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-doc-files: CHANGELOG.md
common warnings
ghc-options:
-Wall -Wextra -Weverything -Wcompat -Wno-implicit-prelude
-Wno-unsafe -Wno-missing-safe-haskell-mode
-Wno-missing-local-signatures -Wno-missing-import-lists -haddock
common defaults
default-language: GHC2024
default-extensions: BlockArguments
library
import: warnings, defaults
exposed-modules: Assistant
build-depends:
, base
, effectful
, effectful-th
, exceptions
, hackage-db
, hoogle
, telegram-bot-api
, telegram-bot-simple
, text
hs-source-dirs: src
executable telegram-assistant
import: warnings, defaults
main-is: Main.hs
build-depends:
, base
, telegram-assistant
hs-source-dirs: app