Skip to content

Commit

Permalink
ghcide: lower bounds (#3025)
Browse files Browse the repository at this point in the history
* ghcide: lower bounds

Before `ghc-exactprint-1.4` some `instance Default` are missing.
`UnliftIO.Directory` appears only in `unliftio-0.2.6`.
`tasty-hunit < 0.10` does not re-export `HasCallStack`.

* Correct bounds for ghc-exactprint
  • Loading branch information
Bodigrim authored Jul 9, 2022
1 parent 12095b2 commit 37e6e85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ghcide/ghcide.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ library
filepath,
fingertree,
focus,
ghc-exactprint,
ghc-exactprint < 1 || >= 1.4,
ghc-trace-events,
Glob,
haddock-library >= 1.8 && < 1.11,
Expand Down Expand Up @@ -102,7 +102,7 @@ library
vector,
opentelemetry >=0.6.1,
heapsize ==0.3.*,
unliftio,
unliftio >= 0.2.6,
unliftio-core,
ghc-boot-th,
ghc-boot,
Expand Down Expand Up @@ -432,7 +432,7 @@ test-suite ghcide-tests
hls-graph,
tasty,
tasty-expected-failure,
tasty-hunit,
tasty-hunit >= 0.10,
tasty-quickcheck,
tasty-rerun,
text,
Expand Down Expand Up @@ -497,7 +497,7 @@ executable ghcide-bench
safe-exceptions,
hls-graph,
shake,
tasty-hunit,
tasty-hunit >= 0.10,
text
hs-source-dirs: bench/lib bench/exe test/src
ghc-options: -threaded -Wall -Wno-name-shadowing -rtsopts
Expand Down

0 comments on commit 37e6e85

Please sign in to comment.