-
Notifications
You must be signed in to change notification settings - Fork 2
/
curry-language-server.cabal
174 lines (168 loc) · 5.04 KB
/
curry-language-server.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack
name: curry-language-server
version: 1.0.0.4
synopsis: IDE support for the functional-logic language Curry
description: Please see the README on GitHub at <https://github.com/fwcd/curry-language-server#readme>
category: Development
homepage: https://github.com/fwcd/curry-language-server#readme
bug-reports: https://github.com/fwcd/curry-language-server/issues
author: fwcd
maintainer: fwcd
copyright: 2020-2024 fwcd
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/fwcd/curry-language-server
library
exposed-modules:
Curry.LanguageServer.Compiler
Curry.LanguageServer.Config
Curry.LanguageServer.CPM.Deps
Curry.LanguageServer.CPM.Monad
Curry.LanguageServer.CPM.Process
Curry.LanguageServer.FileLoader
Curry.LanguageServer.Handlers
Curry.LanguageServer.Handlers.Cancel
Curry.LanguageServer.Handlers.Diagnostics
Curry.LanguageServer.Handlers.Initialize
Curry.LanguageServer.Handlers.TextDocument.CodeAction
Curry.LanguageServer.Handlers.TextDocument.CodeLens
Curry.LanguageServer.Handlers.TextDocument.Completion
Curry.LanguageServer.Handlers.TextDocument.Definition
Curry.LanguageServer.Handlers.TextDocument.DocumentSymbol
Curry.LanguageServer.Handlers.TextDocument.Hover
Curry.LanguageServer.Handlers.TextDocument.Notifications
Curry.LanguageServer.Handlers.TextDocument.SignatureHelp
Curry.LanguageServer.Handlers.Workspace.Command
Curry.LanguageServer.Handlers.Workspace.Notifications
Curry.LanguageServer.Handlers.Workspace.Symbol
Curry.LanguageServer.Index.Convert
Curry.LanguageServer.Index.Resolve
Curry.LanguageServer.Index.Store
Curry.LanguageServer.Index.Symbol
Curry.LanguageServer.Monad
Curry.LanguageServer.Utils.Concurrent
Curry.LanguageServer.Utils.Convert
Curry.LanguageServer.Utils.General
Curry.LanguageServer.Utils.Logging
Curry.LanguageServer.Utils.Lookup
Curry.LanguageServer.Utils.Sema
Curry.LanguageServer.Utils.Syntax
Curry.LanguageServer.Utils.Uri
Curry.LanguageServer.Utils.VFS
other-modules:
Paths_curry_language_server
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
Glob ==0.10.*
, aeson ==2.2.*
, async ==2.2.*
, base >=4.16 && <4.19
, bytestring >=0.11 && <0.13
, bytestring-trie ==0.2.*
, co-log-core ==0.3.*
, containers >=0.6 && <0.8
, curry-frontend
, data-default ==0.7.*
, directory ==1.3.*
, either >=5.0 && <6
, exceptions ==0.10.*
, extra >=1.7 && <1.9
, filepath ==1.4.*
, lens >=5.1 && <5.3
, lsp ==2.7.*
, mtl >=2.2 && <2.4
, parsec >=3.1 && <4
, pretty ==1.1.*
, process >=1.6 && <2
, sorted-list ==0.2.*
, stm ==2.5.*
, text >=2.0 && <2.2
, text-rope ==0.2.*
, transformers >=0.5 && <0.7
, unliftio-core ==0.2.*
default-language: Haskell2010
executable curry-language-server
main-is: Main.hs
other-modules:
Paths_curry_language_server
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
Glob ==0.10.*
, aeson ==2.2.*
, async ==2.2.*
, base >=4.16 && <4.19
, bytestring >=0.11 && <0.13
, bytestring-trie ==0.2.*
, co-log-core ==0.3.*
, containers >=0.6 && <0.8
, curry-frontend
, curry-language-server
, data-default ==0.7.*
, directory ==1.3.*
, either >=5.0 && <6
, exceptions ==0.10.*
, extra >=1.7 && <1.9
, filepath ==1.4.*
, lens >=5.1 && <5.3
, lsp ==2.7.*
, mtl >=2.2 && <2.4
, parsec >=3.1 && <4
, pretty ==1.1.*
, process >=1.6 && <2
, sorted-list ==0.2.*
, stm ==2.5.*
, text >=2.0 && <2.2
, text-rope ==0.2.*
, transformers >=0.5 && <0.7
, unliftio-core ==0.2.*
default-language: Haskell2010
test-suite curry-language-server-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_curry_language_server
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
Glob ==0.10.*
, aeson ==2.2.*
, async ==2.2.*
, base >=4.16 && <4.19
, bytestring >=0.11 && <0.13
, bytestring-trie ==0.2.*
, co-log-core ==0.3.*
, containers >=0.6 && <0.8
, curry-frontend
, curry-language-server
, data-default ==0.7.*
, directory ==1.3.*
, either >=5.0 && <6
, exceptions ==0.10.*
, extra >=1.7 && <1.9
, filepath ==1.4.*
, lens >=5.1 && <5.3
, lsp ==2.7.*
, mtl >=2.2 && <2.4
, parsec >=3.1 && <4
, pretty ==1.1.*
, process >=1.6 && <2
, sorted-list ==0.2.*
, stm ==2.5.*
, text >=2.0 && <2.2
, text-rope ==0.2.*
, transformers >=0.5 && <0.7
, unliftio-core ==0.2.*
default-language: Haskell2010