Skip to content

Commit ca6f601

Browse files
committed
Remove implicit-hie
1 parent d3b9153 commit ca6f601

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

ghcide/ghcide.cabal

-2
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,6 @@ library
108108
-- https://github.com/Avi-D-coder/implicit-hie/issues/50
109109
-- to make sure ghcide behaves in a desirable way, we put implicit-hie
110110
-- fake dependency here.
111-
implicit-hie < 0.1.3,
112-
implicit-hie-cradle ^>= 0.3.0.5 || ^>= 0.5,
113111
base16-bytestring >=0.1.1 && <1.1
114112
if os(windows)
115113
build-depends:

ghcide/session-loader/Development/IDE/Session.hs

+1-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ import qualified HIE.Bios as HieBios
7373
import HIE.Bios.Environment hiding (getCacheDir)
7474
import HIE.Bios.Types hiding (Log)
7575
import qualified HIE.Bios.Types as HieBios
76-
import Hie.Implicit.Cradle (loadImplicitHieCradle)
7776
import Ide.Logger (Pretty (pretty),
7877
Priority (Debug, Error, Info, Warning),
7978
Recorder, WithPriority,
@@ -277,7 +276,7 @@ loadWithImplicitCradle :: Maybe FilePath
277276
loadWithImplicitCradle mHieYaml rootDir = do
278277
case mHieYaml of
279278
Just yaml -> HieBios.loadCradle yaml
280-
Nothing -> loadImplicitHieCradle $ addTrailingPathSeparator rootDir
279+
Nothing -> HieBios.loadImplicitCradle $ addTrailingPathSeparator rootDir
281280

282281
getInitialGhcLibDirDefault :: Recorder (WithPriority Log) -> FilePath -> IO (Maybe LibDir)
283282
getInitialGhcLibDirDefault recorder rootDir = do

0 commit comments

Comments
 (0)