-
Notifications
You must be signed in to change notification settings - Fork 1
/
hipchat-hs.cabal
66 lines (64 loc) · 2.46 KB
/
hipchat-hs.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
name: hipchat-hs
version: 0.0.4
synopsis: Hipchat API bindings in Haskell
description: Hipchat API bindings in Haskell
license: BSD3
license-file: LICENSE
author: Oswyn Brent <[email protected]>
maintainer: [email protected]
copyright: Oswyn Brent 2015
category: Web
build-type: Simple
cabal-version: >=1.18
source-repository HEAD
type: git
location: https://github.com/oswynb/hipchat-hs
library
exposed-modules: HipChat.Client
HipChat.Types.API
HipChat.Types.Auth
HipChat.Types.Common
HipChat.Types.Dialog
HipChat.Types.Extensions
HipChat.Types.ExternalPage
HipChat.Types.Glance
HipChat.Types.Icon
HipChat.Types.Key
HipChat.Types.Name
HipChat.Types.Rooms
HipChat.Types.User
HipChat.Types.WebPanel
HipChat.Types.Webhook
-- Rooms
HipChat.Types.Rooms.CreateRoomRequest
HipChat.Types.Rooms.CreateRoomResponse
HipChat.Types.Rooms.CreateWebhookResponse
HipChat.Types.Rooms.GetAllMembersResponse
HipChat.Types.Rooms.GetAllRoomsResponse
-- Other
HipChat.Types.RoomAddonUIUpdateRequest
-- Addon support
HipChat.AddonPersistence.Store
-- other-extensions:
build-depends: base >= 4.8 && < 5
, aeson >= 0.11
, aeson-casing
, async
, bytestring
, either
, http-api-data
, http-client
, lens
, network-uri >= 2.6
, postgresql-simple
, resource-pool
, servant >= 0.6
, servant-client >= 0.6
, split
, string-conversions
, text
, time
, unordered-containers
hs-source-dirs: lib
ghc-options: -Wall
default-language: Haskell2010