-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgf-lsp.cabal
57 lines (53 loc) · 1.69 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
cabal-version: 3.0
name: gf-lsp
synopsis: A Language Server Protocol server for Grammatical Framework
version: 0.0.1.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: Reactor.hs
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -threaded -O2
other-modules: GFExtras
build-depends: base
-- , gf-lsp
, aeson
, containers
, directory
, filepath
, gf
-- , hslogger
, co-log-core
, lens
, lsp
, lsp-types
, prettyprinter
, split
, stm
, text
, time
, unordered-containers
test-suite gf-lsp-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall -threaded
build-depends: base >=4.11 && < 5
, gf-lsp
, hedgehog
, lsp-test