-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathtelegram-api.cabal
104 lines (100 loc) · 3.9 KB
/
telegram-api.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
name: telegram-api
version: 0.7.1.0
synopsis: Telegram Bot API bindings
description: High-level bindings to the Telegram Bot API
homepage: http://github.com/klappvisor/haskell-telegram-api#readme
license: BSD3
license-file: LICENSE
author: Alexey Rodiontsev
maintainer: [email protected]
copyright: Alexey Rodiontsev (c) 2016
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
data-files: test-data/christmas-cat.jpg
, test-data/cert.pem
, test-data/haskell-logo.webp
, test-data/lego-video.mp4
, test-data/lego-square.mp4
, test-data/Possible_PDM_signal_labeled_as_Sputnik_by_NASA.ogg
, test-data/concerto-for-2-trumpets-in-c-major.mp3
, test-data/wikipedia-telegram.txt
, test-data/sticker_1.png
, test-data/sticker_2.png
extra-source-files:
README.md
CHANGELOG.md
library
hs-source-dirs: src
exposed-modules: Web.Telegram.API.Bot
, Web.Telegram.API.Bot.API
, Web.Telegram.API.Bot.API.Messages
, Web.Telegram.API.Bot.API.Edit
, Web.Telegram.API.Bot.API.Queries
, Web.Telegram.API.Bot.API.Get
, Web.Telegram.API.Bot.API.Updates
, Web.Telegram.API.Bot.API.Chats
, Web.Telegram.API.Bot.API.Payments
, Web.Telegram.API.Bot.API.Stickers
, Web.Telegram.API.Bot.Data
, Web.Telegram.API.Bot.Responses
, Web.Telegram.API.Bot.Requests
other-modules: Web.Telegram.API.Bot.JsonExt
, Web.Telegram.API.Bot.API.Core
, Servant.Client.MultipartFormData
build-depends: base >= 4.7 && < 5
, aeson
, containers
, http-api-data
, http-client
, servant
, servant-client == 0.16
, servant-client-core
, mtl
, text
, transformers
, http-media
, http-types
, mime-types
, bytestring
, string-conversions
, binary
default-language: Haskell2010
ghc-options: -Wall -fno-warn-name-shadowing -fno-warn-unused-binds
test-suite telegram-api-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: MainSpec
, InlineSpec
, PaymentsSpec
, JsonSpec
, UpdatesSpec
, StickersSpec
, TestCore
build-depends: base
, aeson
, hjpath
, ansi-wl-pprint
, http-client
, http-client-tls
, http-types
, hspec
, optparse-applicative
, servant
, servant-client
, servant-client-core
, telegram-api
, http-types
, filepath
, text
, transformers
, utf8-string
, random
, binary
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -fno-warn-name-shadowing
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/klappvisor/haskell-telegram-api