forked from avanov/amazonka-contrib-rds-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathamazonka-contrib-rds-utils.cabal
More file actions
97 lines (80 loc) · 3.01 KB
/
amazonka-contrib-rds-utils.cabal
File metadata and controls
97 lines (80 loc) · 3.01 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
cabal-version: 3.0
name: amazonka-contrib-rds-utils
version: 1.6.1.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
license: MPL-2.0
license-file: LICENSE
author: Maxim Avanov
maintainer: maxim.avanov@gmail.com
synopsis: A Haskell equivalent of "aws rds generate-db-auth-token"
description: A Haskell equivalent of "aws rds generate-db-auth-token" CLI utility built on top of "amazonka" library.
homepage: https://github.com/avanov/amazonka-contrib-rds-utils
bug-reports: https://github.com/avanov/amazonka-contrib-rds-utils/issues
copyright: Copyright (c) 2021 Maxim Avanov
category: AWS
extra-source-files: CHANGELOG.md
README.md
library
exposed-modules: Network.AWS.RDS.Utils
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base >= 4.14.1.0
, amazonka >= 1.6.1
, amazonka-core
, amazonka-rds
, bytestring >= 0.9
, lens >= 4.4
, text >= 1.1
, time >= 1.11
hs-source-dirs: src
default-language: Haskell2010
default-extensions: OverloadedStrings
LambdaCase
QuasiQuotes
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-fPIC
-static
-optl=-pthread
cc-options: -static
executable generate-db-auth-token
hs-source-dirs: exe
main-is: Main.hs
autogen-modules: Paths_amazonka_contrib_rds_utils
other-modules: Paths_amazonka_contrib_rds_utils
default-extensions: OverloadedStrings
LambdaCase
QuasiQuotes
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-fPIC
-static
-optl=-pthread
-threaded
-rtsopts "-with-rtsopts=-N -I3 -M1.75G"
-feager-blackholing
cc-options: -static
build-depends:
base >=4.12 && <5
, bytestring
, amazonka
, amazonka-contrib-rds-utils
, lens
, optparse-applicative >= 0.16.1
, text
if os(linux)
else
default-language: Haskell2010