From 8722d5702d80ef2962f4ca6a8914ca6b88801e73 Mon Sep 17 00:00:00 2001 From: George Thomas Date: Sat, 25 Nov 2023 19:30:19 +0000 Subject: [PATCH 1/2] Allow mtl-2.3 and transformers-0.6 --- reanimate-svg.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reanimate-svg.cabal b/reanimate-svg.cabal index 60273a0..1f20b05 100644 --- a/reanimate-svg.cabal +++ b/reanimate-svg.cabal @@ -59,8 +59,8 @@ library , linear >= 1.20 , vector >= 0.10 , text >= 1.1 - , transformers >= 0.3 && < 0.6 - , mtl >= 2.1 && < 2.3 + , transformers >= 0.3 && < 0.7 + , mtl >= 2.1 && < 2.4 , lens >= 4.6 && < 6 , double-conversion >= 2.0.0.0 && < 3.0.0.0 , hashable >= 1.3.0.0 From 5de2bdae18b49864287188dd9dce3a7e09f16e90 Mon Sep 17 00:00:00 2001 From: George Thomas Date: Sat, 25 Nov 2023 19:31:37 +0000 Subject: [PATCH 2/2] Increase `-fsimpl-tick-factor` to 1000 The old bound of 300 is not high enough on GHC 9.6.3. A loose bound has been chosen for the sake of simplicity and to prevent further churn. --- reanimate-svg.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reanimate-svg.cabal b/reanimate-svg.cabal index 1f20b05..10c8137 100644 --- a/reanimate-svg.cabal +++ b/reanimate-svg.cabal @@ -28,7 +28,7 @@ Source-Repository head library hs-source-dirs: src - ghc-options: -Wall -fsimpl-tick-factor=300 + ghc-options: -Wall -fsimpl-tick-factor=1000 default-language: Haskell2010 exposed-modules: Graphics.SvgTree , Graphics.SvgTree.CssTypes