Skip to content

Commit 7be4ee5

Browse files
authored
Support GHC 9.0.1 (at least in some packages) (#2154)
1 parent 4c55791 commit 7be4ee5

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

dhall-docs/dhall-docs.cabal

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Library
6565
base >= 4.11.0.0 && < 5 ,
6666
bytestring < 0.12,
6767
containers ,
68-
cryptonite < 0.29,
68+
cryptonite < 0.30,
6969
directory >= 1.3.0.0 && < 1.4 ,
7070
dhall >= 1.38.0 && < 1.39,
7171
file-embed >= 0.0.10.0 ,
@@ -137,6 +137,12 @@ Test-Suite tasty
137137
dhall ,
138138
dhall-docs ,
139139
foldl < 1.5 ,
140+
141+
-- hashable isn't used directly, but lucid's rendering output depends
142+
-- on the Hashable Text instance defined in hashable.
143+
-- See https://github.com/chrisdone/lucid/issues/107.
144+
hashable < 1.3.1 ,
145+
140146
path ,
141147
path-io ,
142148
pretty >= 1.1.1.1 ,

dhall/dhall.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ Library
510510
repline >= 0.4.0.0 && < 0.5 ,
511511
serialise >= 0.2.0.0 && < 0.3 ,
512512
scientific >= 0.3.0.0 && < 0.4 ,
513-
template-haskell >= 2.13.0.0 && < 2.17,
513+
template-haskell >= 2.13.0.0 && < 2.18,
514514
text >= 0.11.1.0 && < 1.3 ,
515515
text-manipulate >= 0.2.0.1 && < 0.4 ,
516516
th-lift-instances >= 0.1.13 && < 0.2 ,
@@ -533,7 +533,7 @@ Library
533533
else
534534
Hs-Source-Dirs: ghc-src
535535
Build-Depends:
536-
cryptonite >= 0.23 && < 1.0
536+
cryptonite >= 0.23 && < 0.30
537537
if flag(with-http)
538538
Build-Depends:
539539
http-types >= 0.7.0 && < 0.13,

0 commit comments

Comments
 (0)