Skip to content

Commit 37e6e85

Browse files
authored
ghcide: lower bounds (#3025)
* 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
1 parent 12095b2 commit 37e6e85

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ghcide/ghcide.cabal

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ library
5959
filepath,
6060
fingertree,
6161
focus,
62-
ghc-exactprint,
62+
ghc-exactprint < 1 || >= 1.4,
6363
ghc-trace-events,
6464
Glob,
6565
haddock-library >= 1.8 && < 1.11,
@@ -102,7 +102,7 @@ library
102102
vector,
103103
opentelemetry >=0.6.1,
104104
heapsize ==0.3.*,
105-
unliftio,
105+
unliftio >= 0.2.6,
106106
unliftio-core,
107107
ghc-boot-th,
108108
ghc-boot,
@@ -432,7 +432,7 @@ test-suite ghcide-tests
432432
hls-graph,
433433
tasty,
434434
tasty-expected-failure,
435-
tasty-hunit,
435+
tasty-hunit >= 0.10,
436436
tasty-quickcheck,
437437
tasty-rerun,
438438
text,
@@ -497,7 +497,7 @@ executable ghcide-bench
497497
safe-exceptions,
498498
hls-graph,
499499
shake,
500-
tasty-hunit,
500+
tasty-hunit >= 0.10,
501501
text
502502
hs-source-dirs: bench/lib bench/exe test/src
503503
ghc-options: -threaded -Wall -Wno-name-shadowing -rtsopts

0 commit comments

Comments
 (0)