Skip to content

Commit a6a1367

Browse files
committed
hie-compat: Remove dependency on ghc-api-compat
1 parent 32f0944 commit a6a1367

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

hie-compat/hie-compat.cabal

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ library
2929
else
3030
build-depends: ghc, ghc-boot
3131
if (impl(ghc >= 9.0) && impl(ghc < 9.1))
32-
-- Used by src-reexport/...
33-
build-depends: ghc-api-compat
3432
ghc-options: -Wall -Wno-name-shadowing
3533

3634
exposed-modules:
@@ -47,5 +45,5 @@ library
4745
if (impl(ghc > 8.9) && impl(ghc < 8.11))
4846
hs-source-dirs: src-ghc810 src-reexport
4947
if (impl(ghc >= 9.0) && impl(ghc < 9.1) || flag(ghc-lib))
50-
hs-source-dirs: src-ghc901 src-reexport
48+
hs-source-dirs: src-ghc901
5149

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Compat.HieDebug
2+
( module GHC.Iface.Ext.Debug ) where
3+
import GHC.Iface.Ext.Debug
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Compat.HieTypes
2+
( module GHC.Iface.Ext.Types ) where
3+
import GHC.Iface.Ext.Types
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Compat.HieUtils
2+
( module GHC.Iface.Ext.Utils ) where
3+
import GHC.Iface.Ext.Utils

0 commit comments

Comments
 (0)