Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ if !os(windows)
if !os(windows)
executable-dynamic: True

source-repository-package
type: git
location: https://github.com/haskell-debugger/dap.git
tag: 2267060ddcee86a5d80b9d7ab29816deddcfe99c
43 changes: 38 additions & 5 deletions haskell-debugger.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,9 @@ library
hs-source-dirs: haskell-debugger
default-language: GHC2021

executable hdb
library dap
import: warnings
main-is: Main.hs
other-modules: Development.Debug.Adapter.Breakpoints,
exposed-modules: Development.Debug.Adapter.Breakpoints,
Development.Debug.Adapter.Stepping,
Development.Debug.Adapter.Stopped,
Development.Debug.Adapter.Evaluation,
Expand All @@ -169,13 +168,46 @@ executable hdb
Development.Debug.Adapter.Exit,
Development.Debug.Adapter.Exit.Helpers,
Development.Debug.Adapter.Handles,
Development.Debug.Adapter.Server,
Development.Debug.Adapter,

Development.Debug.Adapter.Proxy,

Development.Debug.Interactive,

Development.Debug.Session.Setup,
hs-source-dirs: hdb-dap
default-language: GHC2021
default-extensions: CPP
build-depends:
base, ghc, ghci,
exceptions, aeson, bytestring,
containers, filepath,
process, mtl,
unordered-containers >= 0.2.19 && < 0.3,

haskell-debugger,
hie-bios,
prettyprinter ^>= 1.7.0,
co-log-core >= 0.3.2.5 && < 0.4,
implicit-hie ^>=0.1.4.0,
transformers >= 0.6 && < 0.7,
time,

directory >= 1.3.9 && < 1.4,
network >= 3.2.8,
network-run >= 0.4.4,
async >= 2.2.5 && < 2.3,
text >= 2.1 && < 2.3,
dap >= 0.5 && < 0.6,

haskeline >= 0.8 && < 1,
optparse-applicative >= 0.18 && < 0.20,
uuid >= 1.3 && < 1.4,
ghc-stack-annotations >=0.1 && <0.2,

executable hdb
import: warnings
main-is: Main.hs
other-modules: Development.Debug.Interactive,

Development.Debug.Options,
Development.Debug.Options.Parser,
Expand All @@ -190,6 +222,7 @@ executable hdb
unordered-containers >= 0.2.19 && < 0.3,

haskell-debugger,
haskell-debugger:dap,
hie-bios,
prettyprinter ^>= 1.7.0,
co-log-core >= 0.3.2.5 && < 0.4,
Expand Down
Loading
Loading