-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpact-lsp.cabal
73 lines (68 loc) · 1.78 KB
/
pact-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
cabal-version: 1.12
name: pact-lsp
version: 0.0.1
description: Pact language server
author: Robert Soeldner
maintainer: robert@kadena.io
license: BSD3
license-file: LICENSE
build-type: Simple
library
exposed-modules:
Pact.LSP.Server
Pact.LSP.Handlers
Pact.LSP.Types
Pact.LSP.PactTrace
other-modules:
Paths_pact_lsp
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >=4.5 && <5.0,
aeson >= 2.1.1,
bytestring >= 0.10.12,
text >= 1.2.4,
mtl >= 2.2.2,
co-log-core >= 0.3.2,
lens >= 5.2,
lsp >= 1.6.0,
lsp-types >= 1.6.0,
parsec >= 3.1.14,
prettyprinter >= 1.7.1,
text-rope >= 0.2,
process >= 1.6.13
default-language: Haskell2010
executable pact-lsp
main-is: Main.hs
other-modules:
Paths_pact_lsp
hs-source-dirs:
bin
ghc-options: -Wall -Wno-missing-home-modules
build-depends:
base >=4.5 && <5.0
, pact-lsp
default-language: Haskell2010
test-suite pact-lsp-tests
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_pact_lsp
hs-source-dirs:
tests
ghc-options: -Wall -Wno-missing-home-modules -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.5 && <5.0
, lsp-test
, lsp-types
, pact-lsp
, co-log-core
, text
, process
, hspec
, lens
, directory
, parsec
, temporary
default-language: Haskell2010