From 7bb2468ee3f2ecca16ef73577068297f650fc0bf Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Sun, 27 Oct 2024 16:01:37 +0100 Subject: [PATCH] loosened dependency version requirements and switched to optimization level 2 for the executable --- currycarbon.cabal | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/currycarbon.cabal b/currycarbon.cabal index 31f41d4..19cc9ce 100644 --- a/currycarbon.cabal +++ b/currycarbon.cabal @@ -33,9 +33,9 @@ library Currycarbon.Utils hs-source-dirs: src - build-depends: + build-depends: base >= 4.14 && < 5 - , filepath >= 1.4 && < 1.5 + , filepath >= 1.4 && < 1.6 , parsec >= 3.1 && < 3.2 , vector >= 0.12 && < 0.14 , math-functions >= 0.3 && < 0.4 @@ -53,13 +53,13 @@ executable currycarbon currycarbon , base >= 4.14 && < 5 , optparse-applicative >= 0.16 && < 0.19 - , filepath >= 1.4 && < 1.5 + , filepath >= 1.4 && < 1.6 other-modules: Paths_currycarbon default-language: Haskell2010 ghc-options: - -threaded -with-rtsopts=-N -optP-Wno-nonportable-include-path + -threaded -O2 -with-rtsopts=-N -optP-Wno-nonportable-include-path test-suite spec hs-source-dirs: