-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdap-estgi-server.cabal
67 lines (64 loc) · 1.42 KB
/
dap-estgi-server.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
name: dap-estgi-server
version: 0.1.0.0
description: Debug Adaptor Protocol (DAP) implementation for External STG Interpreter
synopsis: Debug adaptor protocol implementation for ESTGi
bug-reports: https://github.com/dap/issues
license: BSD3
license-file: LICENSE
author: David Johnson
maintainer: [email protected]
copyright: (c) 2023 David Johnson
category: Debuggers, Language
build-type: Simple
tested-with: GHC==9.2.4
cabal-version: >= 1.10
extra-source-files:
CHANGELOG.md
executable dap-estgi
other-modules:
Inspect.Stack
Inspect.Value
Inspect.Value.Atom
Inspect.Value.HeapObject
Inspect.Value.StackContinuation
CustomCommands
GraphProtocol.Commands
GraphProtocol.Server
Graph
Breakpoints
DapBase
SourceCode
SourceLocation
main-is:
Main.hs
ghc-options:
-threaded
build-depends:
ansi-wl-pprint
, base < 5
, containers
, dap
, bytestring
, external-stg-interpreter
, external-stg-syntax
, external-stg
, filepath
, filemanip
, lifted-base
, network
, unagi-chan
, unordered-containers
, string-conversions
, aeson
, text
, time
, mtl
, yaml
, zip
, bimap
, pretty-simple
, network-simple
hs-source-dirs:
src
default-language:
Haskell2010