packages feed

aws-kinesis-reshard-0.1.0.1: aws-kinesis-reshard.cabal

name:                aws-kinesis-reshard
version:             0.1.0.1
synopsis:            Reshard AWS Kinesis streams in response to Cloud Watch metrics
license:             Apache-2.0
license-file:        LICENSE
author:              Jon Sterling
maintainer:          jon@jonmsterling.com
copyright:           Copyright (c) 2013-2014 PivotCloud, Inc.
category:            Cloud
build-type:          Simple
cabal-version:       >=1.10
homepage:            https://github.com/alephcloud/hs-aws-kinesis-reshard
bug-reports:         https://github.com/alephcloud/hs-aws-kinesis-reshard/issues
extra-source-files:  CHANGELOG.md

source-repository head
    type: git
    location: https://github.com/alephcloud/hs-aws-kinesis-reshard.git

library
  default-language:    Haskell2010
  hs-source-dirs:      src
  ghc-options:         -Wall
  exposed-modules:     Aws.Kinesis.Reshard.Analysis
                     , Aws.Kinesis.Reshard.Common
                     , Aws.Kinesis.Reshard.Exception
                     , Aws.Kinesis.Reshard.Metrics
                     , Aws.Kinesis.Reshard.Monad
                     , Aws.Kinesis.Reshard.Options
                     , Aws.Kinesis.Reshard.Shards
  build-depends:       base >=4.7 && <4.8
                     , base-unicode-symbols
                     , aws >=0.10.5
                     , aws-general >=0.1.1
                     , aws-kinesis >=0.1.1
                     , aws-sdk >=0.12.4
                     , conduit >=1.2.3
                     , bytestring >=0.10.4.0
                     , hoist-error >=0.1.0.2
                     , lens >=4.7
                     , lens-action >=0.1.0.1
                     , lifted-async >=0.2.0.2
                     , lifted-base >=0.2.3.0
                     , monad-control >=0.3.3.0 && <1.0
                     , mtl >=2.2.0
                     , optparse-applicative >=0.11.0.0
                     , resourcet >=1.1.2.3
                     , text >=1.2.0.0
                     , time >=1.4.2
                     , transformers >=0.4.2.0

executable kinesis-reshard
  main-is:             Main.hs
  build-depends:       base >=4.7 && <4.8
                     , base-unicode-symbols
                     , aws >=0.10.5
                     , aws-general >=0.1.1
                     , aws-sdk >=0.12.4
                     , aws-kinesis >=0.1.1
                     , aws-kinesis-reshard
                     , conduit >=1.2.3
                     , either >=4.3.2
                     , hoist-error >=0.1.0.2
                     , lens >=4.7
                     , lens-action >=0.1.0.1
                     , lifted-async >=0.2.0.2
                     , lifted-base >=0.2.3.0
                     , monad-control >=0.3.3.0 && <1.0
                     , mtl >=2.2.0
                     , optparse-applicative >=0.11.0.0
                     , resourcet >=1.1.2.3
                     , text >=1.2.0.0
                     , time >=1.4.2
                     , transformers >=0.4.2.0
  hs-source-dirs:      src
  ghc-options:         -Wall
  default-language:    Haskell2010