From f24c6802f8745c1fd4aa50cfe3ac52ea28d10b5e Mon Sep 17 00:00:00 2001 From: Teo Camarasu Date: Tue, 2 Jan 2024 11:55:21 +0000 Subject: [PATCH] Relax containers, deepseq bounds This is required for GHC-9.8.1 compatibility. See: https://github.com/commercialhaskell/stackage/issues/7217 --- trie-simple.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trie-simple.cabal b/trie-simple.cabal index a868074..3d1a834 100644 --- a/trie-simple.cabal +++ b/trie-simple.cabal @@ -34,8 +34,8 @@ library other-modules: Data.Trie.Set.Hidden, Data.Trie.Map.Hidden build-depends: base >= 4.14 && < 4.20, - containers >= 0.5.7.1 && < 0.7, - deepseq >= 1.4.2.0 && < 1.5, + containers >= 0.5.7.1 && < 0.8, + deepseq >= 1.4.2.0 && < 1.6, mtl >= 2.2.1 && < 2.4, indexed-traversable >= 0.1.1 && <0.2, witherable ^>= 0.4,