Skip to content

Commit 722e853

Browse files
committed
fix deps
1 parent ac8edef commit 722e853

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

haskell-language-server.cabal

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1728,13 +1728,15 @@ library hls-core-plugin
17281728
build-depends:
17291729
, base >=4.12 && <5
17301730
, containers
1731+
, unordered-containers
17311732
, extra
17321733
, text-rope
17331734
, mtl >= 2.2
17341735
, ghcide == 2.7.0.0
17351736
, hls-plugin-api == 2.7.0.0
17361737
, lens
17371738
, lsp >=2.4
1739+
, hiedb ^>= 0.6.0.0
17381740
, text
17391741
, transformers
17401742
, bytestring

plugins/hls-core-plugin/src/Ide/Plugin/Core/Actions.hs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ import Language.LSP.Protocol.Types (DocumentHighlight (..),
2222
normalizedFilePathToUri,
2323
uriToNormalizedFilePath)
2424

25+
import qualified Data.HashMap.Strict as HM
26+
import qualified HieDb
27+
2528

2629
-- Refs are not an IDE action, so it is OK to be slow and (more) accurate
2730
refsAtPoint :: NormalizedFilePath -> Position -> Action [Location]

0 commit comments

Comments
 (0)