Skip to content

Commit 30ff1b3

Browse files
committed
revert.
1 parent 7628907 commit 30ff1b3

File tree

14 files changed

+13
-1584
lines changed

14 files changed

+13
-1584
lines changed

Changelog.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
20250816 haskell-debug-adapter-0.0.44.0
2-
* [ADD] MCP support.(experimental)
3-
4-
5-
61
20250316 haskell-debug-adapter-0.0.42.0
72
* [PR] Use hie-bios to generalize build command #37
83

app/Main.hs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ options :: Parser ArgData
6161
options = ArgData
6262
<$> hackageOption
6363
<*> stdioLogFileOption
64-
<*> mcpSwitchOption
6564

6665

6766
-- |
@@ -81,10 +80,3 @@ stdioLogFileOption = optional $ strOption $ mconcat
8180
, help "stdio log file"
8281
]
8382

84-
-- |
85-
--
86-
mcpSwitchOption :: Parser Bool
87-
mcpSwitchOption = switch $ mconcat
88-
[ long "mcp"
89-
, help "Enable MCP mode"
90-
]

haskell-debug-adapter.cabal

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 1.12
55
-- see: https://github.com/sol/hpack
66

77
name: haskell-debug-adapter
8-
version: 0.0.43.0
8+
version: 0.0.42.0
99
synopsis: Haskell Debug Adapter.
1010
description: Please see README.md
1111
category: Development
@@ -47,9 +47,6 @@ library
4747
Haskell.Debug.Adapter.State.GHCiRun.ConfigurationDone
4848
Haskell.Debug.Adapter.State.Init
4949
Haskell.Debug.Adapter.State.Init.Initialize
50-
Haskell.Debug.Adapter.State.Init.McpToolsList
51-
Haskell.Debug.Adapter.State.Init.McpInitialize
52-
Haskell.Debug.Adapter.State.Init.McpCallTool
5350
Haskell.Debug.Adapter.State.Init.Launch
5451
Haskell.Debug.Adapter.State.Shutdown
5552
Haskell.Debug.Adapter.State.Utility
@@ -58,7 +55,6 @@ library
5855
Haskell.Debug.Adapter.Utility
5956
Haskell.Debug.Adapter.Watch
6057
Paths_haskell_debug_adapter
61-
Haskell.Debug.Adapter.MCP.Type
6258
hs-source-dirs:
6359
src
6460
default-extensions:

src/Haskell/Debug/Adapter/Control.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ run argDat inHdl outHdl = E.bracket initialize finalize go
8383
, _outHandleAppStores = outHdl
8484
, _asyncsAppStores = []
8585
, _stdioLogFileAppStores = argDat^.stdioLogFileArgData
86-
, _isMcpAppStores = argDat^.mcpArgData
8786

8887
-- Read/Write from Application
8988
, _appStateWAppStores = WrapAppState InitState

0 commit comments

Comments
 (0)