-
-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathhls-eval-plugin.cabal
112 lines (100 loc) · 2.41 KB
/
hls-eval-plugin.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
cabal-version: 2.4
name: hls-eval-plugin
version: 1.0.0.0
synopsis: Eval plugin for Haskell Language Server
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
category: Development
bug-reports: https://github.com/haskell/haskell-language-server/issues
license: Apache-2.0
license-file: LICENSE
author:
https://github.com/haskell/haskell-language-server/contributors
maintainer:
https://github.com/haskell/haskell-language-server/contributors
build-type: Simple
extra-source-files:
LICENSE
README.md
test/testdata/*.cabal
test/testdata/*.expected
test/testdata/*.hs
test/testdata/*.lhs
test/testdata/*.yaml
flag pedantic
description: Enable -Werror
default: False
manual: True
source-repository head
type: git
location: https://github.com/haskell/haskell-language-server
library
exposed-modules:
Ide.Plugin.Eval
Ide.Plugin.Eval.Types
hs-source-dirs: src
other-modules:
Ide.Plugin.Eval.Code
Ide.Plugin.Eval.CodeLens
Ide.Plugin.Eval.GHC
Ide.Plugin.Eval.Parse.Comments
Ide.Plugin.Eval.Parse.Option
Ide.Plugin.Eval.Util
build-depends:
, aeson
, base >=4.12 && <5
, containers
, deepseq
, Diff ^>=0.4.0
, directory
, dlist
, extra
, filepath
, ghc
, ghc-boot-th
, ghc-paths
, ghcide ^>=1.2.0.0
, hashable
, hls-plugin-api >=1.0 && <1.2
, lens
, lsp
, lsp-types
, megaparsec >=9.0
, mtl
, parser-combinators
, pretty-simple
, QuickCheck
, safe-exceptions
, shake
, temporary
, text
, time
, transformers
, unliftio
, unordered-containers
ghc-options:
-Wall -Wno-name-shadowing -Wno-unticked-promoted-constructors
if flag(pedantic)
ghc-options: -Werror
default-language: Haskell2010
default-extensions:
DataKinds
TypeOperators
test-suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
, aeson
, base
, directory
, extra
, filepath
, hls-eval-plugin
, hls-test-utils ^>= 1.0.0.0
, lens
, lsp-test
, lsp-types
, text