forked from alephcloud/hs-aws-kinesis
-
Notifications
You must be signed in to change notification settings - Fork 3
/
aws-kinesis.cabal
128 lines (112 loc) · 3.46 KB
/
aws-kinesis.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
-- Copyright (c) 2013-2015 PivotCloud, Inc.
--
-- aws-kinesis.cabal
--
-- Please feel free to contact us at [email protected] with any
-- contributions, additions, or other feedback; we would love to hear from
-- you.
--
-- Licensed under the Apache License, Version 2.0 (the "License"); you may
-- not use this file except in compliance with the License. You may obtain a
-- copy of the License at http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-- License for the specific language governing permissions and limitations
-- under the License.
Name: aws-kinesis
Version: 0.1.5
Synopsis: Bindings for Amazon Kinesis
description:
Bindings for <http://aws.amazon.com/kinesis/ Amazon Kinesis>
.
Amazon Kinesis is an AWS service for real-time processing of
streaming data at massive scale.
.
/API Version: 2013-12-02/
.
<http://docs.aws.amazon.com/kinesis/2013-12-02/APIReference>
Homepage: https://github.com/alephcloud/hs-aws-kinesis
Bug-reports: https://github.com/alephcloud/hs-aws-kinesis/issues
License: Apache-2.0
License-file: LICENSE
Author: Lars Kuhtz <[email protected]>
Maintainer: Lars Kuhtz <[email protected]>
Copyright: Copyright (c) 2013-2015 PivotCloud, Inc.
Category: Network, Web, AWS, Cloud, Distributed Computing
Build-type: Simple
cabal-version: >= 1.16
extra-doc-files:
README.md,
CHANGELOG.md
extra-source-files:
constraints
source-repository head
type: git
location: https://github.com/alephcloud/hs-aws-kinesis.git
source-repository this
type: git
location: https://github.com/alephcloud/hs-aws-kinesis.git
tag: 0.1.5
Library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Aws.Kinesis
Aws.Kinesis.Core
Aws.Kinesis.Types
Aws.Kinesis.Commands.CreateStream
Aws.Kinesis.Commands.DeleteStream
Aws.Kinesis.Commands.PutRecord
Aws.Kinesis.Commands.PutRecords
Aws.Kinesis.Commands.GetRecords
Aws.Kinesis.Commands.GetShardIterator
Aws.Kinesis.Commands.ListStreams
Aws.Kinesis.Commands.DescribeStream
Aws.Kinesis.Commands.SplitShard
Aws.Kinesis.Commands.MergeShards
build-depends:
QuickCheck >= 2.7,
aeson >= 0.7,
aws >= 0.9,
aws-general >= 0.2.2,
base == 4.*,
base64-bytestring >= 1.0,
blaze-builder >= 0.3,
bytestring >= 0.10,
conduit >= 1.2.1,
conduit-extra >= 1.1,
deepseq >= 1.3,
http-conduit >= 2.1,
http-types >= 0.8,
parsers >= 0.11,
quickcheck-instances >= 0.3,
resourcet >= 1.1,
text >= 1.1,
time >= 1.4,
transformers >= 0.3
ghc-options: -Wall
test-suite kinesis-tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: tests
main-is: Main.hs
other-modules:
Utils
build-depends:
QuickCheck >= 2.7,
aeson >= 0.7,
aws >= 0.9,
aws-general >= 0.2 && < 0.3,
aws-kinesis,
base == 4.*,
bytestring >= 0.10,
errors >= 1.4.7,
mtl >= 2.0,
tagged >= 0.7,
tasty >= 0.8,
tasty-quickcheck >= 0.8,
text >= 1.1,
transformers >= 0.3
ghc-options: -Wall -threaded