From a439b2b5299a49445e343c0a5abf6d266a086109 Mon Sep 17 00:00:00 2001 From: Sherub Thakur Date: Fri, 2 Sep 2022 05:54:41 +0530 Subject: [PATCH] Remove redundant dependencies (#51) Since Relude (>= 1.0) reexports most common modules from the following libraries - containers - unordered-containers - text - bytestring So we can remove these from our build-depends list. More information: https://github.com/kowainik/relude/issues/353 --- haskell-template.cabal | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/haskell-template.cabal b/haskell-template.cabal index 974d017..496f8d7 100644 --- a/haskell-template.cabal +++ b/haskell-template.cabal @@ -77,17 +77,14 @@ common shared , aeson , async , base >=4.13.0.0 && <=4.18.0.0 - , bytestring - , containers , data-default , directory , filepath , mtl , optics-core , profunctors - , relude + , relude >=1.0 , shower - , text , time , with-utf8