-
-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathamazonka-test.cabal
67 lines (62 loc) · 2.08 KB
/
amazonka-test.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
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 <[email protected]>, Jack Kelly <[email protected]>
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: https://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
, time-compat ^>=1.9.8
, unordered-containers >=0.2.5
, yaml >=0.8.7