diff options
| -rw-r--r-- | cabal-helper.cabal | 25 | 
1 files changed, 13 insertions, 12 deletions
diff --git a/cabal-helper.cabal b/cabal-helper.cabal index bf1e26c..b3131a1 100644 --- a/cabal-helper.cabal +++ b/cabal-helper.cabal @@ -84,20 +84,21 @@ executable cabal-helper-wrapper      ghc-options:         -Wall    scope:               private    x-scope:             private + +  -- Remember to copy to compile-test!    build-depends:       base             < 5    && >= 4.5 -                     , Cabal            < 2.1  && >= 2.0     || < 1.26 && >= 1.14 +                     , Cabal            < 2.1  && >= 2.0 || < 1.26 && >= 1.14                       , bytestring       < 0.11 && >= 0.9.2.1                       , directory        < 1.4  && >= 1.1.0.2                       , exceptions       < 0.9  && >= 0.8.3                       , filepath         < 1.5  && >= 1.3.0.0 -                     , transformers     < 0.6  && >= 0.3.0.0                       , mtl              < 2.3  && >= 2.0                       , process          < 1.7  && >= 1.1.0.1 +                     , template-haskell < 2.13 && >= 2.7.0.0                       , temporary        < 1.3  && >= 1.2.0.4 -                     , utf8-string      < 1.1  && >= 1.0.1.1 +                     , transformers     < 0.6  && >= 0.3.0.0                       , unix             < 2.8  && >= 2.5.1.1 - -                     , template-haskell +                     , utf8-string      < 1.1  && >= 1.0.1.1  test-suite compile-test    default-language:    Haskell2010 @@ -117,22 +118,22 @@ test-suite compile-test    hs-source-dirs:      .    ghc-options:         -Wall    build-tools:         cabal -  build-depends:       base             < 5    && >= 4.5 +  -- Same as cabal-helper-wrapper +  build-depends:       base             < 5    && >= 4.5 +                     , Cabal            < 2.1  && >= 2.0 || < 1.26 && >= 1.14                       , bytestring       < 0.11 && >= 0.9.2.1 -                     , Cabal            < 2.1  && >= 2.0     || < 1.26 && >= 1.14                       , directory        < 1.4  && >= 1.1.0.2 +                     , exceptions       < 0.9  && >= 0.8.3                       , filepath         < 1.5  && >= 1.3.0.0 -                     , transformers     < 0.6  && >= 0.3.0.0                       , mtl              < 2.3  && >= 2.0                       , process          < 1.7  && >= 1.1.0.1 +                     , template-haskell < 2.13 && >= 2.7.0.0                       , temporary        < 1.3  && >= 1.2.0.4 -                     , utf8-string      < 1.1  && >= 1.0.1.1 - -                     -- additional test deps +                     , transformers     < 0.6  && >= 0.3.0.0                       , unix             < 2.8  && >= 2.5.1.1 +                     , utf8-string      < 1.1  && >= 1.0.1.1 -                     , template-haskell  executable cabal-helper-main    default-language:    Haskell2010  | 
