File tree 13 files changed +142
-135
lines changed
hls-explicit-imports-plugin
hls-stylish-haskell-plugin
13 files changed +142
-135
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ library
68
68
, lsp
69
69
, hie-bios
70
70
, hiedb
71
- , hls-plugin-api >= 1.0 && < 1.2
71
+ , hls-plugin-api ^ >= 1.1
72
72
, hslogger
73
73
, optparse-applicative
74
74
, optparse-simple
@@ -332,7 +332,7 @@ executable haskell-language-server
332
332
, mtl
333
333
, regex-tdfa
334
334
, safe-exceptions
335
- , shake >= 0.17.5
335
+ , shake
336
336
, sqlite-simple
337
337
, temporary
338
338
, transformers
@@ -387,11 +387,11 @@ test-suite func-test
387
387
, hspec-expectations
388
388
, lens
389
389
, ghcide
390
- , hls-test-utils
390
+ , hls-test-utils ^ >= 1.0.0.0
391
391
, lsp-types
392
392
, aeson
393
- , hls-plugin-api >= 1.0 && < 1.2
394
- , lsp-test == 0.14.0.0
393
+ , hls-plugin-api
394
+ , lsp-test
395
395
, containers
396
396
, unordered-containers
397
397
Original file line number Diff line number Diff line change @@ -5,9 +5,7 @@ synopsis: Haskell Language Server API for plugin communication
5
5
description :
6
6
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
7
7
8
- homepage :
9
- https://github.com/haskell/haskell-language-server/hls-plugin-api
10
-
8
+ homepage : https://github.com/haskell/haskell-language-server#readme
11
9
bug-reports : https://github.com/haskell/haskell-language-server/issues
12
10
license : Apache-2.0
13
11
license-file : LICENSE
@@ -48,7 +46,7 @@ library
48
46
, hashable
49
47
, hslogger
50
48
, lens
51
- , lsp ^>= 1.2.0
49
+ , lsp ^>= 1.2
52
50
, opentelemetry
53
51
, process
54
52
, regex-tdfa >= 1.3.1.0
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ description:
6
6
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
7
7
8
8
homepage :
9
- https://github.com/haskell/haskell-language-server/hls-test-utils
9
+ https://github.com/haskell/haskell-language-server#readme
10
10
11
11
bug-reports : https://github.com/haskell/haskell-language-server/issues
12
12
license : Apache-2.0
Original file line number Diff line number Diff line change @@ -44,5 +44,5 @@ test-suite tests
44
44
, base
45
45
, bytestring
46
46
, hls-brittany-plugin
47
- , hls-test-utils
47
+ , hls-test-utils ^ >= 1.0.0.0
48
48
, text
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ library
30
30
, ghc
31
31
, ghc-exactprint
32
32
, ghcide ^>= 1.1.0.0
33
- , hls-plugin-api >= 1.0 && < 1.2
33
+ , hls-plugin-api ^ >= 1.1
34
34
, lens
35
35
, lsp
36
36
, shake
@@ -56,7 +56,7 @@ test-suite tests
56
56
, bytestring
57
57
, filepath
58
58
, hls-class-plugin
59
- , hls-test-utils
59
+ , hls-test-utils ^ >= 1.0.0.0
60
60
, lens
61
61
, lsp-test
62
62
, lsp-types
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ test-suite tests
105
105
, extra
106
106
, filepath
107
107
, hls-eval-plugin
108
- , hls-test-utils
108
+ , hls-test-utils ^ >= 1.0.0.0
109
109
, lens
110
110
, lsp-test
111
111
, lsp-types
Original file line number Diff line number Diff line change 1
- cabal-version : 2.2
2
- name : hls-explicit-imports-plugin
3
- version : 1.0.0.0
4
- synopsis : Explicit imports plugin for Haskell Language Server
5
- license : Apache-2.0
6
- license-file : LICENSE
7
- author : Pepe Iborra
8
- maintainer : pepeiborra@gmail.com
9
- category : Development
10
- build-type : Simple
1
+ cabal-version : 2.2
2
+ name : hls-explicit-imports-plugin
3
+ version : 1.0.0.0
4
+ synopsis : Explicit imports plugin for Haskell Language Server
5
+ license : Apache-2.0
6
+ license-file : LICENSE
7
+ author : Pepe Iborra
8
+ maintainer : pepeiborra@gmail.com
9
+ category : Development
10
+ build-type : Simple
11
11
extra-source-files :
12
- LICENSE
13
12
include/ghc-api-version.h
13
+ LICENSE
14
14
15
15
library
16
- exposed-modules : Ide.Plugin.ExplicitImports
17
- hs-source-dirs : src
18
- build-depends : aeson
19
- , base >= 4.12 && < 5
20
- , containers
21
- , deepseq
22
- , lsp-types
23
- , lsp
24
- , hls-plugin-api >= 1.0 && < 1.2
25
- , ghc
26
- , ghcide ^>= 1.1.0.0
27
- , shake
28
- , text
29
- , unordered-containers
16
+ exposed-modules : Ide.Plugin.ExplicitImports
17
+ hs-source-dirs : src
18
+ build-depends :
19
+ , aeson
20
+ , base >= 4.12 && < 5
21
+ , containers
22
+ , deepseq
23
+ , ghc
24
+ , ghcide ^>= 1.1.0.0
25
+ , hls-plugin-api ^>= 1.1
26
+ , lsp
27
+ , lsp-types
28
+ , shake
29
+ , text
30
+ , unordered-containers
30
31
31
- default-language : Haskell2010
32
- include-dirs : include
33
- default-extensions : DataKinds, TypeOperators
32
+ default-language : Haskell2010
33
+ include-dirs : include
34
+ default-extensions :
35
+ DataKinds
36
+ TypeOperators
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ library
30
30
, ghc
31
31
, ghc-exactprint
32
32
, ghcide ^>= 1.1.0.0
33
- , hls-plugin-api >= 1.0 && < 1.2
33
+ , hls-plugin-api ^ >= 1.1
34
34
, lsp-types
35
35
, text
36
36
, unordered-containers
@@ -51,5 +51,5 @@ test-suite tests
51
51
, bytestring
52
52
, filepath
53
53
, hls-haddock-comments-plugin
54
- , hls-test-utils
54
+ , hls-test-utils ^ >= 1.0.0.0
55
55
, text
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ library
44
44
, ghcide ^>= 1.1.0.0
45
45
, hashable
46
46
, hlint >= 3.2
47
- , hls-plugin-api >= 1.0 && < 1.2
47
+ , hls-plugin-api ^ >= 1.1
48
48
, hslogger
49
49
, lens
50
50
, lsp
Original file line number Diff line number Diff line change 1
- cabal-version : 2.2
2
- name : hls-retrie-plugin
3
- version : 1.0.0.1
4
- synopsis : Retrie integration plugin for Haskell Language Server
5
- license : Apache-2.0
6
- license-file : LICENSE
7
- author : Pepe Iborra
8
- maintainer : pepeiborra@gmail.com
9
- category : Development
10
- build-type : Simple
1
+ cabal-version : 2.2
2
+ name : hls-retrie-plugin
3
+ version : 1.0.0.1
4
+ synopsis : Retrie integration plugin for Haskell Language Server
5
+ license : Apache-2.0
6
+ license-file : LICENSE
7
+ author : Pepe Iborra
8
+ maintainer : pepeiborra@gmail.com
9
+ category : Development
10
+ build-type : Simple
11
11
extra-source-files :
12
- LICENSE
13
12
include/ghc-api-version.h
13
+ LICENSE
14
14
15
15
library
16
- exposed-modules : Ide.Plugin.Retrie
17
- hs-source-dirs : src
18
- build-depends : aeson
19
- , base >= 4.12 && < 5
20
- , containers
21
- , deepseq
22
- , directory
23
- , extra
24
- , lsp
25
- , lsp-types
26
- , hls-plugin-api >= 1.0 && < 1.2
27
- , ghc
28
- , ghcide ^>= 1.1
29
- , hashable
30
- , retrie >= 0.1.1.0
31
- , safe-exceptions
32
- , shake
33
- , text
34
- , transformers
35
- , unordered-containers
16
+ exposed-modules : Ide.Plugin.Retrie
17
+ hs-source-dirs : src
18
+ build-depends :
19
+ , aeson
20
+ , base >= 4.12 && < 5
21
+ , containers
22
+ , deepseq
23
+ , directory
24
+ , extra
25
+ , ghc
26
+ , ghcide ^>= 1.1
27
+ , hashable
28
+ , hls-plugin-api ^>= 1.1
29
+ , lsp
30
+ , lsp-types
31
+ , retrie >= 0.1.1.0
32
+ , safe-exceptions
33
+ , shake
34
+ , text
35
+ , transformers
36
+ , unordered-containers
37
+
38
+ default-language : Haskell2010
39
+ include-dirs : include
40
+ default-extensions :
41
+ DataKinds
42
+ TypeOperators
36
43
37
- default-language : Haskell2010
38
- include-dirs : include
39
- default-extensions : DataKinds, TypeOperators
40
- ghc-options : -Wno-unticked-promoted-constructors
44
+ ghc-options : -Wno-unticked-promoted-constructors
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ library
41
41
, ghc
42
42
, ghc-exactprint
43
43
, ghcide ^>= 1.1.0.0
44
- , hls-plugin-api >= 1.0 && < 1.2
44
+ , hls-plugin-api ^ >= 1.1
45
45
, lens
46
46
, lsp
47
47
, retrie
@@ -69,5 +69,5 @@ test-suite tests
69
69
, extra
70
70
, filepath
71
71
, hls-splice-plugin
72
- , hls-test-utils
72
+ , hls-test-utils ^ >= 1.0.0.0
73
73
, text
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ library
23
23
, ghc
24
24
, ghc-boot-th
25
25
, ghcide ^>= 1.1.0.0
26
- , hls-plugin-api >= 1.0 && < 1.2
26
+ , hls-plugin-api ^ >= 1.1
27
27
, lsp-types
28
28
, mtl
29
29
, stylish-haskell ^>= 0.12
@@ -41,5 +41,5 @@ test-suite tests
41
41
, base
42
42
, bytestring
43
43
, hls-stylish-haskell-plugin
44
- , hls-test-utils
44
+ , hls-test-utils ^ >= 1.0.0.0
45
45
, text
You can’t perform that action at this time.
0 commit comments