From 71e9f29e1daab208086e4e8d937e42b5c00672f6 Mon Sep 17 00:00:00 2001 From: Omar Ahmed Date: Sun, 13 Nov 2016 22:39:18 -0500 Subject: [PATCH] Fix #42 --- hapistrano.cabal | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/hapistrano.cabal b/hapistrano.cabal index 6bf631c..79a7da1 100644 --- a/hapistrano.cabal +++ b/hapistrano.cabal @@ -35,9 +35,9 @@ library exposed-modules: System.Hapistrano other-modules: System.Hapistrano.Types build-depends: base >= 4.5 && < 4.10 - , either + , either >= 4.0 && < 4.6 + , mtl >= 2.0 && < 3.0 , filepath - , mtl , process , time-locale-compat , time @@ -50,7 +50,7 @@ executable hap main-is: Main.hs build-depends: base , hapistrano - , base-compat + , base-compat >= 0.6 && < 1.0 ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 @@ -59,15 +59,15 @@ test-suite hapistrano-test hs-source-dirs: spec main-is: Spec.hs other-modules: System.HapistranoSpec - build-depends: base + build-depends: base >= 4.5 && < 4.10 , hapistrano - , directory - , either - , filepath - , hspec - , mtl - , process + , either >= 4.0 && < 4.6 + , hspec > 2.0 && < 2.5 + , mtl >= 2.0 && < 3.0 , temporary + , directory + , filepath + , process ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010