packages feed

aws-kinesis-reshard-0.1.0.0: aws-kinesis-reshard.cabal

name:                aws-kinesis-reshard
version:             0.1.0.0
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

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
                     , aws-general
                     , aws-kinesis
                     , aws-sdk
                     , conduit
                     , bytestring
                     , hoist-error
                     , lens
                     , lifted-async
                     , lifted-base
                     , monad-control
                     , mtl
                     , optparse-applicative
                     , resourcet
                     , text
                     , time
                     , transformers

executable kinesis-reshard
  main-is:             Main.hs
  build-depends:       base >=4.7 && <4.8
                     , base-unicode-symbols
                     , aws
                     , aws-general
                     , aws-sdk
                     , aws-kinesis
                     , aws-kinesis-reshard
                     , conduit
                     , either
                     , hoist-error
                     , lens
                     , lifted-async
                     , lifted-base
                     , monad-control
                     , mtl
                     , optparse-applicative
                     , resourcet
                     , text
                     , time
                     , transformers
  hs-source-dirs:      src
  ghc-options:         -Wall
  default-language:    Haskell2010