maybench 0.2.4 → 0.2.4.1
raw patch · 3 files changed
+9/−8 lines, 3 filesdep ~benchpressdep ~filepath
Dependency ranges changed: benchpress, filepath
Files
- Test/Maybench/Command.hs +1/−1
- darcs-benchmark/DarcsBenchmark.hs +1/−1
- maybench.cabal +7/−6
Test/Maybench/Command.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE GADTs, TypeSynonymInstances, FlexibleInstances, MultiParamTypeClasses #-}+{-# OPTIONS_GHC -fglasgow-exts #-} module Test.Maybench.Command where import Test.Maybench.Utils ((|>))
darcs-benchmark/DarcsBenchmark.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE GeneralizedNewtypeDeriving, MultiParamTypeClasses #-}+{-# OPTIONS_GHC -fglasgow-exts #-} import Prelude hiding (foldr, foldl, foldr1, foldl1) import Control.Arrow (second) import Control.Monad ()
maybench.cabal view
@@ -1,5 +1,5 @@ Name: maybench-Version: 0.2.4+Version: 0.2.4.1 License: BSD3 License-file: LICENSE Author: Maybench developers@@ -27,7 +27,7 @@ Flag splitBase Description: Choose the new smaller, split-up base package. Library- build-depends: benchpress >= 0.2.2 && < 0.2.3+ build-depends: benchpress >= 0.2.2.1 && < 0.2.3 if flag(splitBase) build-depends: base >= 3, process, old-time else@@ -39,7 +39,7 @@ Executable maybench Hs-Source-Dirs: ., wrapper- build-depends: benchpress >= 0.2.2 && < 0.2.3+ build-depends: benchpress >= 0.2.2.1 && < 0.2.3 if flag(splitBase) build-depends: base >= 3, process@@ -50,11 +50,12 @@ Executable darcs-benchmark Hs-Source-Dirs: ., darcs-benchmark- build-depends: benchpress >= 0.2.2 && < 0.2.3,- Cabal >= 1.2 && < 1.5+ build-depends: benchpress >= 0.2.2.1 && < 0.2.3,+ Cabal >= 1.2 && < 1.5,+ filepath >= 1.1 && < 1.2 if flag(splitBase) build-depends: base >= 3,- process, directory, time, mtl, filepath+ process, directory, time, mtl else build-depends: base < 3, time, mtl Main-Is: DarcsBenchmark.hs