From eb512622d81afa3ac96f4c3fe720a246d2a34771 Mon Sep 17 00:00:00 2001 From: adithyaov Date: Fri, 7 Feb 2020 17:53:31 +0530 Subject: [PATCH] Rearrange dependencies and change bound of primitive * Move exceptions, primitive and mtl under the boot section of build-depends * Change lower bound of primitive from >= 0.5.4.0 to >= 0.5.4 --- streamly.cabal | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/streamly.cabal b/streamly.cabal index 535ec4de..35a9bc20 100644 --- a/streamly.cabal +++ b/streamly.cabal @@ -368,20 +368,20 @@ library , containers >= 0.5 && < 0.7 , deepseq >= 1.4.1 && < 1.5 , directory >= 1.2.2 && < 1.4 + , exceptions >= 0.8 && < 0.11 , ghc-prim >= 0.2 && < 0.6 + , mtl >= 2.2 && < 3 + , primitive >= 0.5.4 && < 0.8 , transformers >= 0.4 && < 0.6 - , heaps >= 0.3 && < 0.4 - , primitive >= 0.5.4.0 && < 0.8 + , heaps >= 0.3 && < 0.4 -- concurrency , atomic-primops >= 0.8 && < 0.9 , lockfree-queue >= 0.2.3 && < 0.3 -- transfomers - , exceptions >= 0.8 && < 0.11 , monad-control >= 1.0 && < 2 - , mtl >= 2.2 && < 3 , transformers-base >= 0.4 && < 0.5 if !impl(ghcjs)