-
Notifications
You must be signed in to change notification settings - Fork 0
/
gf-lsp.cabal
90 lines (84 loc) · 2.7 KB
/
gf-lsp.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
cabal-version: 3.0
name: gf-lsp
synopsis: A Language Server Protocol server for Grammatical Framework
version: 1.0.5.1
homepage: https://github.com/anka-213/gf-lsp
license: BSD-3-Clause
author: Andreas Källberg
maintainer: Andreas Källberg
copyright: Andreas Källberg
category: Package.Category
build-type: Simple
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: GfLsp
ghc-options: -Wall -fno-warn-name-shadowing
build-depends: base >= 4.11 && < 5
, lsp
, lsp-types
executable gf-lsp
main-is: Main.hs
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -Wall -threaded -O2
other-modules: GFExtras
, GFTags
, Reactor
build-depends: base
-- , gf-lsp
, aeson
, containers
, directory
, filepath
, gf
-- , hslogger
, co-log-core
-- , co-log-concurrent
, lens
, lsp
, lsp-types
, prettyprinter
, process
, split
, stm
, text
, time
, unordered-containers
test-suite gf-lsp-tests
type: exitcode-stdio-1.0
hs-source-dirs: test,app
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall -threaded
other-modules: GFExtras
, GFTags
, Reactor
build-depends: base >=4.11 && < 5
, gf-lsp
, hedgehog
, lsp-test
, tasty
, tasty-hunit
, tasty-hedgehog
, raw-strings-qq
-- TODO: Use an actual library or something
-- Copied from executable above
, aeson
, containers
, directory
, filepath
, gf
-- , hslogger
, co-log-core
-- , co-log-concurrent
, lens
, lsp
, lsp-types
, prettyprinter
, process
, split
, stm
, text
, time
, unordered-containers