forked from MercuryTechnologies/slack-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slack-web.cabal
100 lines (88 loc) · 2.09 KB
/
slack-web.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
name: slack-web
version: 0.2.0.12
build-type: Simple
cabal-version: 1.20
license: MIT
license-file: LICENSE.md
copyright: 2017 Juan Pedro Villa Isaza
author: Juan Pedro Villa Isaza <[email protected]>
maintainer: Juan Pedro Villa Isaza <[email protected]>
homepage: https://github.com/jpvillaisaza/slack-web
bug-reports: https://github.com/jpvillaisaza/slack-web/issues
synopsis: Bindings for the Slack web API
description: Haskell bindings for the Slack web API.
category: Web
tested-with: GHC == 8.0.2
extra-source-files:
CHANGELOG.md
README.md
library
hs-source-dirs:
src
exposed-modules:
Web.Slack
Web.Slack.Api
Web.Slack.Auth
Web.Slack.Channel
Web.Slack.Chat
Web.Slack.Common
Web.Slack.Conversation
Web.Slack.Group
Web.Slack.Im
Web.Slack.MessageParser
Web.Slack.User
other-modules:
Web.Slack.Types
Web.Slack.Util
build-depends:
aeson >= 1.0 && < 1.5
, base >= 4.11 && < 4.15
, containers
, http-api-data >= 0.3 && < 0.5
, http-client >= 0.5 && < 0.7
, http-client-tls >= 0.3 && < 0.4
, servant >= 0.12 && < 0.17
, servant-client >= 0.12 && < 0.17
, servant-client-core >= 0.12 && < 0.17
, text >= 1.2 && < 1.3
, transformers
, mtl
, scientific
, time
, errors
, megaparsec >= 5.0 && < 9
default-language:
Haskell2010
ghc-options:
-Wall
-- the test suite doesn't depend on slack-web
-- but rather has the src as an extra source directory.
-- that allows us to refer to non exported modules from tests.
test-suite tests
main-is:
Spec.hs
hs-source-dirs:
src, tests
type:
exitcode-stdio-1.0
other-modules:
Web.Slack.MessageParser
Web.Slack.MessageParserSpec
Web.Slack.Types
build-depends:
base >= 4.11 && < 4.14
, containers
, aeson
, errors
, hspec
, http-api-data
, text
, time
, megaparsec >= 5.0 && < 9
default-language:
Haskell2010
ghc-options:
-Wall
source-repository head
type: git
location: https://github.com/jpvillaisaza/slack-web