forked from JakuJ/rsl-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rsl-language-server.cabal
105 lines (99 loc) · 2.79 KB
/
rsl-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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: rsl-language-server
version: 0.1.2.1
description: Please see the README on GitHub at <https://github.com/JakuJ/rsl-language-server#readme>
homepage: https://github.com/JakuJ/rsl-language-server#readme
bug-reports: https://github.com/JakuJ/rsl-language-server/issues
author: Jakub Janaszkiewicz
maintainer: [email protected]
copyright: 2021 Jakub Janaszkiewicz
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/JakuJ/rsl-language-server
library
exposed-modules:
ArgParse
Raise.CodeLens
Raise.DiagnosticParser
Raise.Diagnostics
Raise.Handlers
other-modules:
Paths_rsl_language_server
hs-source-dirs:
src
default-extensions:
OverloadedStrings
DuplicateRecordFields
ghc-options: -flate-dmd-anal -flate-specialise -Wall -Wcompat -Wno-unused-do-bind -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
build-depends:
base >=4.7 && <5
, directory
, filepath
, lens
, lsp
, lsp-types
, megaparsec
, optparse-applicative
, process
, text
default-language: Haskell2010
executable rsl-language-server
main-is: Main.hs
other-modules:
Paths_rsl_language_server
hs-source-dirs:
app
default-extensions:
OverloadedStrings
DuplicateRecordFields
ghc-options: -flate-dmd-anal -flate-specialise -Wall -Wcompat -Wno-unused-do-bind -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, directory
, filepath
, lens
, lsp
, lsp-types
, megaparsec
, optparse-applicative
, process
, rsl-language-server
, text
default-language: Haskell2010
test-suite rsl-language-server-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Raise.DiagnosticParserSpec
Raise.DiagnosticsSpec
Paths_rsl_language_server
hs-source-dirs:
test
default-extensions:
OverloadedStrings
DuplicateRecordFields
ghc-options: -flate-dmd-anal -flate-specialise -Wall -Wcompat -Wno-unused-do-bind -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N -Wno-incomplete-uni-patterns
build-depends:
base >=4.7 && <5
, directory
, filepath
, hspec
, hspec-discover
, lens
, lsp
, lsp-test
, lsp-types
, megaparsec
, optparse-applicative
, process
, rsl-language-server
, text
default-language: Haskell2010