1
- cabal-version : 1.12
1
+ cabal-version : 1.18
2
2
3
3
-- This file has been generated from package.yaml by hpack version 0.35.2.
4
4
--
5
5
-- see: https://github.com/sol/hpack
6
- --
7
- -- hash: 9b45343fdd935eeda31250fd2c6d69dfeb98841cb8ea89c23841ff7612e35b74
8
6
9
7
name : hspec-junit-formatter
10
8
version : 1.1.0.2
@@ -20,12 +18,13 @@ license: MIT
20
18
license-file : LICENSE
21
19
build-type : Simple
22
20
extra-source-files :
21
+ tests/golden/default-ghc-8.xml
22
+ tests/golden/default-ghc-9.xml
23
+ tests/golden/prefixed-ghc-8.xml
24
+ tests/golden/prefixed-ghc-9.xml
25
+ extra-doc-files :
23
26
README.md
24
27
CHANGELOG.md
25
- tests/golden-ghc-9.xml
26
- tests/golden-prefixed-ghc-9.xml
27
- tests/golden-prefixed.xml
28
- tests/golden.xml
29
28
30
29
source-repository head
31
30
type : git
@@ -67,6 +66,7 @@ library
67
66
StandaloneDeriving
68
67
TypeApplications
69
68
TypeFamilies
69
+ ghc-options : -fignore-optim-changes -Weverything -Wno-all-missed-specialisations -Wno-missed-specialisations -Wno-missing-exported-signatures -Wno-missing-import-lists -Wno-missing-local-signatures -Wno-monomorphism-restriction -Wno-safe -Wno-unsafe
70
70
build-depends :
71
71
array
72
72
, base < 5
@@ -78,12 +78,18 @@ library
78
78
, hspec-core >= 2.8.1
79
79
, iso8601-time
80
80
, regex-base
81
- , regex-tdfa >= 1.3.1
81
+ , regex-tdfa
82
82
, text
83
83
, time
84
84
, xml-conduit
85
85
, xml-types
86
86
default-language : Haskell2010
87
+ if impl(ghc >= 9.2 )
88
+ ghc-options : -Wno-missing-kind-signatures
89
+ if impl(ghc >= 8.10 )
90
+ ghc-options : -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module
91
+ if impl(ghc >= 8.8 )
92
+ ghc-options : -fwrite-ide-info
87
93
88
94
test-suite readme
89
95
type : exitcode-stdio-1.0
@@ -114,13 +120,19 @@ test-suite readme
114
120
StandaloneDeriving
115
121
TypeApplications
116
122
TypeFamilies
117
- ghc-options : -pgmL markdown-unlit
123
+ ghc-options : -fignore-optim-changes -Weverything -Wno-all-missed-specialisations -Wno-missed-specialisations -Wno-missing-exported-signatures -Wno-missing-import-lists -Wno-missing-local-signatures -Wno-monomorphism-restriction -Wno-safe -Wno-unsafe - pgmL markdown-unlit
118
124
build-depends :
119
125
base < 5
120
126
, hspec
121
127
, hspec-junit-formatter
122
128
, markdown-unlit
123
129
default-language : Haskell2010
130
+ if impl(ghc >= 9.2 )
131
+ ghc-options : -Wno-missing-kind-signatures
132
+ if impl(ghc >= 8.10 )
133
+ ghc-options : -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module
134
+ if impl(ghc >= 8.8 )
135
+ ghc-options : -fwrite-ide-info
124
136
125
137
test-suite spec
126
138
type : exitcode-stdio-1.0
@@ -154,14 +166,21 @@ test-suite spec
154
166
StandaloneDeriving
155
167
TypeApplications
156
168
TypeFamilies
157
- ghc-options : -threaded -rtsopts -O0 "-with-rtsopts=-N"
169
+ ghc-options : -fignore-optim-changes -Weverything -Wno-all-missed-specialisations -Wno-missed-specialisations -Wno-missing-exported-signatures -Wno-missing-import-lists -Wno-missing-local-signatures -Wno-monomorphism-restriction -Wno-safe -Wno-unsafe - threaded -rtsopts -O0 "-with-rtsopts=-N"
158
170
build-depends :
159
171
base < 5
160
172
, containers
161
173
, filepath
162
174
, hspec
175
+ , hspec-golden
163
176
, hspec-junit-formatter
164
177
, temporary
165
178
, text
166
179
, xml-conduit
167
180
default-language : Haskell2010
181
+ if impl(ghc >= 9.2 )
182
+ ghc-options : -Wno-missing-kind-signatures
183
+ if impl(ghc >= 8.10 )
184
+ ghc-options : -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module
185
+ if impl(ghc >= 8.8 )
186
+ ghc-options : -fwrite-ide-info
0 commit comments