-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack

name:           cloud-seeder
version:        0.0.0.0
synopsis:       A tool for interacting with AWS CloudFormation
description:    This package provides a DSL for creating deployment configurations, as well
                as an interpreter that reads deployment configurations in order to deploy
                application stacks to AWS CloudFormation using Amazonka.
category:       Cloud
homepage:       https://github.com/cjdev/cloud-seeder#readme
bug-reports:    https://github.com/cjdev/cloud-seeder/issues
author:         Alexis King <lexi.lambda@gmail.com>, Michael Arnold <michaelaarnold@gmail.com>
maintainer:     Alexis King <lexi.lambda@gmail.com>, Michael Arnold <michaelaarnold@gmail.com>
copyright:      2017 CJ Affiliate by Conversant
license:        ISC
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    CHANGELOG.md
    LICENSE
    package.yaml
    README.md
    stack.yaml

source-repository head
  type: git
  location: https://github.com/cjdev/cloud-seeder

library
  hs-source-dirs:
      library
  default-extensions: ApplicativeDo ConstraintKinds DefaultSignatures DeriveGeneric ExistentialQuantification FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving LambdaCase MultiParamTypeClasses NamedFieldPuns OverloadedStrings RankNTypes ScopedTypeVariables StandaloneDeriving TupleSections TypeOperators
  ghc-options: -Wall
  build-depends:
      amazonka >= 1.4.5
    , amazonka-cloudformation >= 1.4.5
    , amazonka-core >= 1.4.5
    , base >= 4.9.0.0 && < 5
    , deepseq >= 1.4.1.0
    , exceptions >= 0.8 && < 0.9
    , lens
    , monad-control >= 1.0.0.0
    , monad-logger >= 0.3.13.1
    , monad-time >= 0.2
    , mtl
    , optparse-applicative >= 0.13.0.0
    , text
    , transformers
    , transformers-base
  exposed-modules:
      Network.CloudSeeder.CommandLine
      Network.CloudSeeder.DSL
      Network.CloudSeeder.Interfaces
      Network.CloudSeeder.Main
  default-language: Haskell2010

executable cloud-seeder
  main-is: Main.hs
  hs-source-dirs:
      executable
  default-extensions: ApplicativeDo ConstraintKinds DefaultSignatures DeriveGeneric ExistentialQuantification FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving LambdaCase MultiParamTypeClasses NamedFieldPuns OverloadedStrings RankNTypes ScopedTypeVariables StandaloneDeriving TupleSections TypeOperators
  ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
  build-depends:
      base
    , cloud-seeder
  default-language: Haskell2010

test-suite cloud-seeder-test-suite
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
      test-suite
  default-extensions: ApplicativeDo ConstraintKinds DefaultSignatures DeriveGeneric ExistentialQuantification FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving LambdaCase MultiParamTypeClasses NamedFieldPuns OverloadedStrings RankNTypes ScopedTypeVariables StandaloneDeriving TupleSections TypeOperators
  ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
  build-depends:
      amazonka-cloudformation >= 1.4 && < 1.5
    , base >= 4.9.0.0 && < 5
    , bytestring
    , cloud-seeder
    , deepseq >= 1.4.1.0
    , fast-logger >= 2.4.8
    , hspec >= 2.4 && < 2.5
    , lens
    , monad-logger >= 0.3 && < 0.4
    , mtl
    , text >= 1.2 && < 1.3
    , transformers
  other-modules:
      Network.CloudSeeder.DSLSpec
      Network.CloudSeeder.MainSpec
      Network.CloudSeeder.Test.Stubs
  default-language: Haskell2010