@@ -14,7 +14,7 @@ homepage:
14
14
https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme
15
15
16
16
bug-reports : https://github.com/haskell/haskell-language-server/issues
17
- tested-with : GHC == 9.8.2 || == 9.6.5 || == 9.4.8 || == 9.2.8
17
+ tested-with : GHC == 9.2.8 || == 9.4.8 || == 9.6.5 || == 9.8.2
18
18
extra-source-files :
19
19
CHANGELOG.md
20
20
README.md
@@ -35,16 +35,12 @@ flag pedantic
35
35
36
36
common warnings
37
37
ghc-options :
38
- -Werror=incomplete-patterns
39
- -Wall
40
- -Wincomplete-uni-patterns
41
- -Wunused-packages
42
- -Wno-name-shadowing
43
- -Wno-unticked-promoted-constructors
44
- -fno-ignore-asserts
38
+ -Werror=incomplete-patterns -Wall -Wincomplete-uni-patterns
39
+ -Wunused-packages -Wno-name-shadowing
40
+ -Wno-unticked-promoted-constructors -fno-ignore-asserts
45
41
46
42
library
47
- import : warnings
43
+ import : warnings
48
44
default-language : GHC2021
49
45
build-depends :
50
46
, aeson
@@ -82,10 +78,10 @@ library
82
78
, hashable
83
79
, hie-bios ^>= 0.14.0
84
80
, hie-compat ^>= 0.3.0.0
85
- , hiedb ^>= 0.6.0.0
86
- , hls-graph == 2.8.0.0
87
- , hls-plugin-api == 2.8.0.0
88
- , implicit-hie >= 0.1.4.0 && < 0.1.5
81
+ , hiedb ^>= 0.6.0.0
82
+ , hls-graph == 2.8.0.0
83
+ , hls-plugin-api == 2.8.0.0
84
+ , implicit-hie >= 0.1.4.0 && < 0.1.5
89
85
, lens
90
86
, list-t
91
87
, lsp ^>= 2.5.0.0
@@ -149,8 +145,8 @@ library
149
145
Development.IDE.Core.Tracing
150
146
Development.IDE.Core.UseStale
151
147
Development.IDE.GHC.Compat
152
- Development.IDE.GHC.Compat.Core
153
148
Development.IDE.GHC.Compat.CmdLine
149
+ Development.IDE.GHC.Compat.Core
154
150
Development.IDE.GHC.Compat.Env
155
151
Development.IDE.GHC.Compat.Iface
156
152
Development.IDE.GHC.Compat.Logger
@@ -175,8 +171,8 @@ library
175
171
Development.IDE.Monitoring.OpenTelemetry
176
172
Development.IDE.Plugin
177
173
Development.IDE.Plugin.Completions
178
- Development.IDE.Plugin.Completions.Types
179
174
Development.IDE.Plugin.Completions.Logic
175
+ Development.IDE.Plugin.Completions.Types
180
176
Development.IDE.Plugin.HLS
181
177
Development.IDE.Plugin.HLS.GhcIde
182
178
Development.IDE.Plugin.Test
@@ -208,16 +204,15 @@ library
208
204
Development.IDE.Types.Action
209
205
210
206
if flag(pedantic)
211
- ghc-options :
212
- -Werror
207
+ ghc-options : -Werror
213
208
214
209
flag test-exe
215
210
description : Build the ghcide-test-preprocessor executable
216
211
default : True
217
212
218
213
executable ghcide-test-preprocessor
219
- import : warnings
220
- default-language : GHC2021
214
+ import : warnings
215
+ default-language : GHC2021
221
216
hs-source-dirs : test/preprocessor
222
217
main-is : Main.hs
223
218
build-depends : base >= 4 && < 5
@@ -230,12 +225,11 @@ flag executable
230
225
default : True
231
226
232
227
executable ghcide
233
- import : warnings
228
+ import : warnings
234
229
default-language : GHC2021
235
230
hs-source-dirs : exe
236
231
ghc-options : -threaded -rtsopts "-with-rtsopts=-I0 -A128M -T"
237
232
238
-
239
233
-- allow user RTS overrides
240
234
-- disable idle GC
241
235
-- increase nursery size
@@ -267,19 +261,14 @@ executable ghcide
267
261
buildable : False
268
262
269
263
library ghcide-test-utils
270
- import : warnings
271
- visibility : public
264
+ import : warnings
265
+ visibility : public
272
266
default-language : GHC2021
273
-
274
- hs-source-dirs : test/cabal
275
- exposed-modules :
276
- Development.IDE.Test.Runfiles
277
-
278
- build-depends :
279
- base > 4.9 && < 5
280
-
267
+ hs-source-dirs : test/cabal
268
+ exposed-modules : Development.IDE.Test.Runfiles
269
+ build-depends : base >= 4.9.0 && < 5
281
270
default-extensions :
282
- LambdaCase
283
- OverloadedStrings
284
- RecordWildCards
285
- ViewPatterns
271
+ LambdaCase
272
+ OverloadedStrings
273
+ RecordWildCards
274
+ ViewPatterns
0 commit comments