-
-
Notifications
You must be signed in to change notification settings - Fork 386
/
Copy pathghcide.cabal
250 lines (232 loc) · 6.67 KB
/
ghcide.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
cabal-version: 3.4
build-type: Simple
category: Development
name: ghcide
version: 2.9.0.1
license: Apache-2.0
license-file: LICENSE
author: Digital Asset and Ghcide contributors
maintainer: Ghcide contributors
copyright: Digital Asset and Ghcide contributors 2018-2020
synopsis: The core of an IDE
description: A library for building Haskell IDE's on top of the GHC API.
homepage:
https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme
bug-reports: https://github.com/haskell/haskell-language-server/issues
tested-with: GHC ==9.10.1 || ==9.8.2 || ==9.6.5 || ==9.4.8
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/haskell/haskell-language-server.git
flag pedantic
description: Enable -Werror
default: False
manual: True
common warnings
ghc-options:
-Werror=incomplete-patterns
-Wall
-Wincomplete-uni-patterns
-Wunused-packages
-Wno-name-shadowing
-Wno-unticked-promoted-constructors
-fno-ignore-asserts
library
import: warnings
default-language: GHC2021
build-depends:
, aeson
, array
, async
, base >=4.16 && <5
, base16-bytestring >=0.1.1 && <1.1
, binary
, bytestring
, case-insensitive
, co-log-core
, containers
, cryptohash-sha1 >=0.11.100 && <0.12
, data-default
, deepseq
, dependent-map
, dependent-sum
, Diff ^>=0.5
, directory
, dlist
, enummapset
, exceptions
, extra >=1.7.14
, filepath
, fingertree
, focus >=1.0.3.2
, ghc >=9.2
, ghc-boot
, ghc-boot-th
, ghc-trace-events
, Glob
, haddock-library >=1.8 && <1.12
, hashable
, hie-bios ^>=0.14.0
, hie-compat ^>=0.3.0.0
, hiedb ^>= 0.6.0.0
, hls-graph == 2.9.0.1
, hls-plugin-api == 2.9.0.1
, implicit-hie >= 0.1.4.0 && < 0.1.5
, lens
, lens-aeson
, list-t
, lsp ^>=2.7
, lsp-types ^>=2.3
, mtl
, opentelemetry >=0.6.1
, optparse-applicative
, parallel
, prettyprinter >=1.7
, prettyprinter-ansi-terminal
, random
, regex-tdfa >=1.3.1.0
, safe-exceptions
, sorted-list
, sqlite-simple
, stm
, stm-containers
, syb
, text
, text-rope
, time
, transformers
, unliftio >=0.2.6
, unliftio-core
, unordered-containers >=0.2.10.0
, vector
if os(windows)
build-depends: Win32
else
build-depends: unix
default-extensions:
DataKinds
ExplicitNamespaces
LambdaCase
OverloadedStrings
RecordWildCards
ViewPatterns
hs-source-dirs: src session-loader
exposed-modules:
Control.Concurrent.Strict
Development.IDE
Development.IDE.Core.Actions
Development.IDE.Core.Compile
Development.IDE.Core.Debouncer
Development.IDE.Core.FileStore
Development.IDE.Core.FileUtils
Development.IDE.Core.IdeConfiguration
Development.IDE.Core.OfInterest
Development.IDE.Core.PluginUtils
Development.IDE.Core.PositionMapping
Development.IDE.Core.Preprocessor
Development.IDE.Core.ProgressReporting
Development.IDE.Core.Rules
Development.IDE.Core.RuleTypes
Development.IDE.Core.Service
Development.IDE.Core.Shake
Development.IDE.Core.Tracing
Development.IDE.Core.UseStale
Development.IDE.Core.WorkerThread
Development.IDE.GHC.Compat
Development.IDE.GHC.Compat.Core
Development.IDE.GHC.Compat.CmdLine
Development.IDE.GHC.Compat.Driver
Development.IDE.GHC.Compat.Env
Development.IDE.GHC.Compat.Error
Development.IDE.GHC.Compat.Iface
Development.IDE.GHC.Compat.Logger
Development.IDE.GHC.Compat.Outputable
Development.IDE.GHC.Compat.Parser
Development.IDE.GHC.Compat.Plugins
Development.IDE.GHC.Compat.Units
Development.IDE.GHC.Compat.Util
Development.IDE.GHC.CoreFile
Development.IDE.GHC.Error
Development.IDE.GHC.Orphans
Development.IDE.GHC.Util
Development.IDE.Import.DependencyInformation
Development.IDE.Import.FindImports
Development.IDE.LSP.HoverDefinition
Development.IDE.LSP.LanguageServer
Development.IDE.LSP.Notifications
Development.IDE.LSP.Outline
Development.IDE.LSP.Server
Development.IDE.Main
Development.IDE.Main.HeapStats
Development.IDE.Monitoring.OpenTelemetry
Development.IDE.Plugin
Development.IDE.Plugin.Completions
Development.IDE.Plugin.Completions.Types
Development.IDE.Plugin.Completions.Logic
Development.IDE.Plugin.HLS
Development.IDE.Plugin.HLS.GhcIde
Development.IDE.Plugin.Test
Development.IDE.Plugin.TypeLenses
Development.IDE.Session
Development.IDE.Session.Diagnostics
Development.IDE.Session.Implicit
Development.IDE.Spans.AtPoint
Development.IDE.Spans.Common
Development.IDE.Spans.Documentation
Development.IDE.Spans.LocalBindings
Development.IDE.Spans.Pragmas
Development.IDE.Types.Diagnostics
Development.IDE.Types.Exports
Development.IDE.Types.HscEnvEq
Development.IDE.Types.KnownTargets
Development.IDE.Types.Location
Development.IDE.Types.Monitoring
Development.IDE.Types.Options
Development.IDE.Types.Shake
Generics.SYB.GHC
Text.Fuzzy.Parallel
other-modules:
Development.IDE.Core.FileExists
Development.IDE.GHC.CPP
Development.IDE.GHC.Warnings
Development.IDE.Types.Action
Development.IDE.Session.OrderedSet
if flag(pedantic)
ghc-options:
-Werror
flag executable
description: Build the ghcide executable
default: True
executable ghcide
import: warnings
default-language: GHC2021
hs-source-dirs: exe
ghc-options: -threaded -rtsopts "-with-rtsopts=-I0 -A128M -T"
-- allow user RTS overrides
-- disable idle GC
-- increase nursery size
-- Enable collection of heap statistics
main-is: Main.hs
build-depends:
, base >=4.16 && <5
, data-default
, extra
, ghcide
, gitrev
, hls-plugin-api
, lsp
, lsp-types
, optparse-applicative
other-modules:
Arguments
Paths_ghcide
autogen-modules: Paths_ghcide
default-extensions:
LambdaCase
OverloadedStrings
RecordWildCards
ViewPatterns
if !flag(executable)
buildable: False