forked from haskell/haskell-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhls-code-range-plugin.cabal
72 lines (67 loc) · 1.63 KB
/
hls-code-range-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
cabal-version: 2.4
name: hls-code-range-plugin
version: 1.0.0.0
synopsis:
HLS Plugin to support smart selection range and Folding range
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
license: Apache-2.0
license-file: LICENSE
author: kokobd
maintainer: kokobd
category: Development
build-type: Simple
extra-source-files:
LICENSE
test/testdata/selection-range/*.hs
test/testdata/selection-range/*.yaml
test/testdata/selection-range/*.txt
library
exposed-modules:
Ide.Plugin.CodeRange
Ide.Plugin.CodeRange.Rules
other-modules:
Ide.Plugin.CodeRange.ASTPreProcess
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
build-depends:
, aeson
, base >=4.12 && <5
, containers
, deepseq
, extra
, ghcide ^>=1.6 || ^>=1.7
, hashable
, hls-plugin-api ^>=1.3 || ^>=1.4
, lens
, lsp
, mtl
, semigroupoids
, text
, transformers
, vector
test-suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
other-modules:
Ide.Plugin.CodeRangeTest
Ide.Plugin.CodeRange.RulesTest
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
, base
, bytestring
, containers
, filepath
, ghcide ^>=1.6 || ^>=1.7
, hls-code-range-plugin
, hls-test-utils ^>=1.2 || ^>=1.3
, lens
, lsp
, lsp-test
, tasty-hunit
, text
, transformers
, vector