forked from haskell/haskell-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhls-plugin-api.cabal
61 lines (54 loc) · 1.48 KB
/
hls-plugin-api.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
cabal-version: 2.2
name: hls-plugin-api
version: 0.4.1.0
synopsis: Haskell Language Server API for plugin communication
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
homepage: https://github.com/haskell/haskell-language-server/hls-plugin-api
bug-reports: https://github.com/haskell/haskell-language-server/issues
license: Apache-2.0
license-file: LICENSE
author: Many,TBD when we release
maintainer: [email protected] (for now)
copyright: Alan Zimmerman
category: Web
build-type: Simple
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.Logger
Ide.Plugin
Ide.Plugin.Config
Ide.Plugin.Formatter
Ide.Plugin.GhcIde
Ide.PluginUtils
Ide.Types
hs-source-dirs: src
build-depends:
, aeson
, base >=4.12 && <5
, containers
, data-default
, Diff
, ghc
, ghc-boot-th
, ghcide >=0.4
, haskell-lsp ^>=0.22
, hashable
, hslogger
, lens
, process
, regex-tdfa >=1.3.1.0
, shake >=0.17.5
, text
, unordered-containers
ghc-options: -Wall -Wredundant-constraints -Wno-name-shadowing
if flag(pedantic)
ghc-options: -Werror
default-language: Haskell2010