forked from tdroxler/woods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
woods.cabal
87 lines (82 loc) · 2.4 KB
/
woods.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
name: woods
version: 0.1.0.0
author: Thomas Droxler
maintainer: [email protected]
build-type: Custom
extra-source-files: proto/semanticdb.proto
cabal-version: >=1.10
custom-setup
setup-depends:
base >=4.12 && <4.13
, Cabal
, proto-lens-setup >= 0.4 && < 0.5
library
build-depends:
base >= 4.12 && < 4.13
, network >= 3.1 && < 3.2
, bytestring >= 0.10 && < 0.11
, haskell-lsp-types >= 0.15 && < 0.16
, attoparsec >= 0.13 && < 0.14
, aeson >= 1.4 && < 1.5
, microlens >= 0.4 && < 0.5
, proto-lens >= 0.5 && < 0.6
, proto-lens-runtime >= 0.5 && < 0.6
, text >= 1.2 && < 1.3
, directory >= 1.3 && < 1.4
, filemanip >= 0.3 && < 0.4
, filepath >= 1.4 && < 1.5
hs-source-dirs: src
other-modules:
exposed-modules:
JSONRPC
, LSP
, Helpers
, Sbt
, JumpToDefinition
, FindReferences
, Proto.Semanticdb
, Proto.Semanticdb_Fields
autogen-modules: Proto.Semanticdb, Proto.Semanticdb_Fields
default-language: Haskell2010
build-tool-depends: proto-lens-protoc:proto-lens-protoc
executable woods
main-is: Main.hs
other-modules:
Paths_woods
, Proto.Semanticdb
, Proto.Semanticdb_Fields
hs-source-dirs: woods
autogen-modules: Proto.Semanticdb, Proto.Semanticdb_Fields
build-depends:
base
, woods == 0.1.0.0
, network
, bytestring
, haskell-lsp-types
, aeson
, microlens
, proto-lens
, proto-lens-runtime
, text
default-language: Haskell2010
test-suite test-woods
main-is: Spec.hs
hs-source-dirs: test
other-modules:
JumpToDefinitionSpec
, FindReferencesSpec
, Fixtures
, Paths_woods
build-depends:
base
, woods == 0.1.0.0
, haskell-lsp-types
, microlens
, proto-lens
, hspec
, directory
, text
, bytestring
type: exitcode-stdio-1.0
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover <= 2.6 && < 2.7