-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
142 lines (134 loc) · 2.85 KB
/
package.yaml
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
name: stackctl
version: 1.7.2.0
github: freckle/stackctl
license: MIT
author: Freckle Engineering
maintainer: [email protected]
copyright: 2022 Renaissance Learning Inc
extra-doc-files:
- README.md
- CHANGELOG.md
description: Please see <https://github.com/freckle/stackctl#readme>
dependencies:
- base >= 4 && < 5
ghc-options:
- -fignore-optim-changes
- -fwrite-ide-info
- -Weverything
- -Wno-all-missed-specialisations
- -Wno-missed-specialisations
- -Wno-missing-import-lists
- -Wno-missing-kind-signatures
- -Wno-missing-local-signatures
- -Wno-missing-role-annotations
- -Wno-missing-safe-haskell-mode
- -Wno-prepositive-qualified-module
- -Wno-unsafe
- -optP-Wno-nonportable-include-path # workaround [Filename case on macOS · Issue #4739 · haskell/cabal](https://github.com/haskell/cabal/issues/4739)
default-extensions:
- BangPatterns
- DataKinds
- DeriveAnyClass
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveLift
- DeriveTraversable
- DerivingStrategies
- DerivingVia
- FlexibleContexts
- FlexibleInstances
- GADTs
- GeneralizedNewtypeDeriving
- LambdaCase
- MultiParamTypeClasses
- NoImplicitPrelude
- NoMonomorphismRestriction
- OverloadedStrings
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- StandaloneDeriving
- TypeApplications
- TypeFamilies
library:
source-dirs: src
dependencies:
- Blammo >= 1.1.2.3 # flushLogger bugfix
- Glob
- QuickCheck
- aeson
- aeson-casing
- aeson-pretty
- amazonka >= 2.0
- amazonka-cloudformation >= 2.0
- amazonka-core >= 2.0
- amazonka-ec2 >= 2.0
- amazonka-lambda >= 2.0
- amazonka-mtl
- amazonka-sso >= 2.0
- amazonka-sts >= 2.0
- bytestring
- cfn-flip >= 0.1.0.3 # bugfix for Condition
- conduit
- containers
- envparse
- errors
- exceptions
- extra
- filepath
- lens
- lens-aeson
- monad-logger
- mtl
- optparse-applicative
- resourcet
- rio
- semigroups
- text
- text-metrics
- time
- transformers
- typed-process
- unix
- unliftio >= 0.2.25.0 # UnliftIO.Exception.Lens
- unordered-containers
- uuid
- yaml
executables:
stackctl:
main: Main.hs
source-dirs: app
dependencies:
- stackctl
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
tests:
spec:
main: Spec.hs
source-dirs: test
dependencies:
- Blammo
- Glob
- QuickCheck
- aeson
- amazonka
- amazonka-cloudformation
- amazonka-ec2
- amazonka-lambda
- amazonka-mtl
- bytestring
- filepath
- hspec
- hspec-expectations-lifted
- hspec-golden >= 0.2.1.0
- http-types
- lens
- mtl
- stackctl
- text
- time
- unliftio
- yaml