-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelegram-assistant.cabal
46 lines (40 loc) · 1.06 KB
/
telegram-assistant.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
cabal-version: 3.0
name: telegram-assistant
version: 0.0.0.0
license: BSD-3-Clause
license-file: LICENSE
author: thelissimus
maintainer: [email protected]
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: GHC2021
default-extensions:
BlockArguments
DerivingStrategies
library
import: warnings, defaults
exposed-modules: Assistant
build-depends:
, base >=4.7 && <5
, effectful
, effectful-th
, exceptions
, hackage-db
, hoogle
, telegram-bot-api ==7.3.1
, telegram-bot-simple
, text
hs-source-dirs: src
executable telegram-assistant
import: warnings, defaults
main-is: Main.hs
build-depends:
, base >=4.7 && <5
, telegram-assistant
hs-source-dirs: app