-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtg-form.cabal
More file actions
63 lines (61 loc) · 2.11 KB
/
tg-form.cabal
File metadata and controls
63 lines (61 loc) · 2.11 KB
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
cabal-version: 2.2
name: tg-form
version: 0.1.0.0
synopsis: Telegram bot for easy creation of forms integrating with Google Sheets
-- description:
homepage: https://sr.ht/~rd/tg-form
license: AGPL-3.0-or-later
license-file: LICENSE
author: Mansur Ziiatdinov
maintainer: gltronred@pm.me
copyright: (c) 2020 Mansur Ziiatdinov
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules: TFB.Types
, TFB.Bot
, TFB.Db
, TFB.Env
, TFB.Geo
, TFB.Parser
, TFB.Sheets
-- other-modules:
-- other-extensions:
build-depends: base >=4.12 && <4.13
, aeson >=1.4
, bytestring >=0.10
, cassava >=0.5
, co-log >=0.4
, containers >=0.6
, gogol >=0.5
, gogol-sheets >=0.5
, groundhog >=0.11
, groundhog-converters >=0.1
, groundhog-sqlite >=0.11
, groundhog-th >=0.11
, http-types >=0.12
, lens >=4.19
, mtl >=2.2
, resource-pool >=0.2
, stm >=2.5
-- gogol =0.5 requires servant <0.17, but doesn't specify upper bound
, servant <0.17
, telegram-bot-simple >=0.3
, text >=1.2
, time >=1.8
, vector >=0.12
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable tg-form-bot
main-is: BotMain.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.12 && <4.13
, tg-form
, aeson
, text
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -threaded -Wall