-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathamazonka-gen.cabal
157 lines (149 loc) · 3.55 KB
/
amazonka-gen.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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
cabal-version: 2.2
name: amazonka-gen
version: 2.0
synopsis: Amazon Web Services SDK Generator.
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]>
copyright: Copyright (c) 2013-2023 Brendan Hay
category: AWS
build-type: Simple
source-repository head
type: git
location: https://github.com/brendanhay/amazonka.git
subdir: gen
common base
default-language: Haskell2010
ghc-options:
-Wall -Wunused-packages -fwarn-incomplete-uni-patterns
-fwarn-incomplete-record-updates -funbox-strict-fields
default-extensions:
ConstraintKinds
DataKinds
DefaultSignatures
DeriveAnyClass
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
DerivingStrategies
DerivingVia
DuplicateRecordFields
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
MultiWayIf
NamedFieldPuns
NoImplicitPrelude
OverloadedStrings
PackageImports
PatternSynonyms
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
StrictData
TupleSections
TypeApplications
TypeFamilies
ViewPatterns
build-depends: base >=4.14.3.0 && <5
library
import: base
hs-source-dirs: src
build-depends:
, aeson >=2
, attoparsec >=0.14
, bytestring >=0.11
, case-insensitive >=1.2
, comonad >=5
, containers >=0.6
, deriving-compat >=0.6
, directory-tree >=0.12
, ede >=0.3
, filepath >=1.4
, free >=5
, generic-lens ^>=2.2.2.0
, hashable >=1.3
, haskell-src-exts ^>=1.23
, lens >=4.0
, mtl >=2.2
, pandoc
, scientific >=0.3
, text >=1.2
, time >=1.11
, transformers >=0.5
, unliftio >=0.2
, unordered-containers >=0.2
exposed-modules:
Gen.AST
Gen.AST.Cofree
Gen.AST.Data
Gen.AST.Data.Field
Gen.AST.Data.Instance
Gen.AST.Data.Syntax
Gen.AST.Override
Gen.AST.Prefix
Gen.AST.Subst
Gen.Import
Gen.IO
Gen.JSON
Gen.Output.Template
Gen.Output.Template.CabalFile
Gen.Prelude
Gen.Protocol
Gen.Text
Gen.TH
Gen.Tree
Gen.Types
Gen.Types.Ann
Gen.Types.Config
Gen.Types.Data
Gen.Types.Help
Gen.Types.Id
Gen.Types.Map
Gen.Types.Notation
Gen.Types.NS
Gen.Types.Pager
Gen.Types.Retry
Gen.Types.Service
Gen.Types.TypeOf
Gen.Types.URI
Gen.Types.Waiter
Gen.WordFrequency
Paths_amazonka_gen
executable gen
import: base
hs-source-dirs: bin
main-is: gen.hs
ghc-options: -threaded -rtsopts "-with-rtsopts=-A128m -I0 -qg0"
build-depends:
, amazonka-gen
, filepath
, lens
, mtl
, optparse-applicative >=0.17
, text
, time
, unliftio
executable gen-configs
import: base
hs-source-dirs: bin
main-is: gen-configs.hs
ghc-options: -threaded -rtsopts "-with-rtsopts=-A128m -I0 -qg0"
build-depends:
, aeson
, amazonka-gen
, bytestring
, containers
, filepath
, optparse-applicative
, text
, unliftio