packages feed

amazonka-test-2.0: amazonka-test.cabal

cabal-version:      2.2
name:               amazonka-test
version:            2.0
synopsis:           Common functionality for Amazonka library test-suites.
homepage:           https://github.com/brendanhay/amazonka
bug-reports:        https://github.com/brendanhay/amazonka/issues
license:            MPL-2.0
license-file:       LICENSE
author:             Brendan Hay
maintainer:
  Brendan Hay <brendan.g.hay+amazonka@gmail.com>, Jack Kelly <jack@jackkelly.name>

copyright:          Copyright (c) 2013-2023 Brendan Hay
category:           AWS
build-type:         Simple
extra-source-files: README.md
description:
  Common functionality depended upon by test suites of the various @amazonka-*@
  service libraries.
  .
  The external interface of this library is stable with respect to the
  downstream Amazonka libraries, only, and as such is not suitable
  for use in non-Amazonka projects.

source-repository head
  type:     git
  location: git://github.com/brendanhay/amazonka.git
  subdir:   lib/amazonka-test

library
  default-language: Haskell2010
  hs-source-dirs:   src
  ghc-options:
    -Wall -fwarn-incomplete-uni-patterns
    -fwarn-incomplete-record-updates

  exposed-modules:
    Test.Amazonka.Assert
    Test.Amazonka.Diff
    Test.Amazonka.Fixture
    Test.Amazonka.Orphans
    Test.Amazonka.Prelude
    Test.Amazonka.TH

  build-depends:
    , aeson                 >=1.3
    , amazonka-core         ^>=2.0
    , base                  >=4.12   && <5
    , bifunctors            >=4.1
    , bytestring            >=0.10.8
    , case-insensitive      >=1.2
    , conduit               >=1.1
    , conduit-extra         >=1.1
    , groom                 >=0.1.1
    , http-client           >=0.5
    , http-types            >=0.8
    , process               >=1.2
    , resourcet             >=1.1
    , tasty                 >=0.10
    , tasty-hunit           >=0.9
    , template-haskell      >=2.5
    , temporary             >=1.2
    , text                  >=1.1
    , time                  >=1.9
    , unordered-containers  >=0.2.5
    , yaml                  >=0.8.7