Skip to content

Commit 874de7d

Browse files
committed
fix deps
1 parent 629655c commit 874de7d

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
@@ -1625,13 +1625,15 @@ library hls-core-plugin
16251625
build-depends:
16261626
, base >=4.12 && <5
16271627
, containers
1628+
, unordered-containers
16281629
, extra
16291630
, text-rope
16301631
, mtl >= 2.2
16311632
, ghcide == 2.7.0.0
16321633
, hls-plugin-api == 2.7.0.0
16331634
, lens
16341635
, lsp >=2.4
1636+
, hiedb ^>= 0.6.0.0
16351637
, text
16361638
, transformers
16371639
, 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)