-
Notifications
You must be signed in to change notification settings - Fork 1
/
haskbot.cabal
113 lines (100 loc) · 3.74 KB
/
haskbot.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
cabal-version: 2.4
-- cabal 3.0 is not supported by Stack yet
-- see: https://github.com/haskell/haskell-ide-engine/issues/1564
name: haskbot
version: 0.1.0.0
synopsis: Telegram bot for Haskellers
description: Telegram bot for Haskellers
-- bug-reports:
license: MIT
license-file: LICENSE
author: Vasiliy Yorkin
maintainer: [email protected]
copyright: 2020 Vasiliy Yorkin
-- category:
build-type: Simple
extra-source-files: README.md
, CHANGELOG.md
tested-with: GHC == 8.8.3
library
hs-source-dirs: src
exposed-modules: Haskbot
Haskbot.Bot
Haskbot.Config
Haskbot.Data
Haskbot.Resources
Haskbot.Interpreter
Haskbot.Interpreter.Error
Haskbot.Interpreter.Context
Haskbot.Interpreter.Options
build-depends: base ^>= 4.13
, text ^>= 1.2
, utf8-string ^>= 1.0
, bytestring ^>= 0.10
, unix >= 2.7
, exceptions ^>= 0.10
, tomland ^>= 1.2
, hint ^>= 0.9
, http-client ^>= 0.6
, http-client-tls ^>= 0.3
, servant ^>= 0.17
, servant-client ^>= 0.17
, telegram-bot-simple ^>= 0.3
, containers ^>= 0.6
, transformers ^>= 0.5
, mtl ^>= 2.2
, optparse-applicative ^>= 0.15
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wpartial-fields
default-language: Haskell2010
default-extensions: ConstraintKinds
DeriveGeneric
GeneralizedNewtypeDeriving
InstanceSigs
BlockArguments
KindSignatures
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
ViewPatterns
NoStarIsType
executable haskbot
hs-source-dirs: app
main-is: Main.hs
build-depends: base
, haskbot
ghc-options: -Wall
-threaded
-rtsopts
-with-rtsopts=-N
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wpartial-fields
default-language: Haskell2010
default-extensions: ConstraintKinds
DeriveGeneric
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
ViewPatterns