packages feed

benchpress-0.2: benchpress.cabal

name:           benchpress
version:        0.2
synopsis:       Micro-benchmarking with detailed statistics.
Description:    Benchmarks actions and produces statistics
                such as min, mean, median, standard deviation,
                and max execution time.  Also computes
                execution time percentiles.  Comes with
                functions to pretty-print the results.
license:        BSD3
license-file:   LICENSE
author:         Johan Tibell
maintainer:     johan.tibell@gmail.com
build-type:     Simple
cabal-version:  >= 1.2
category:       Testing

library
  exposed-modules:  Test.BenchPress

  other-modules:  Math.Statistics

  build-depends:  base >= 2.1 && < 3.1,
                  mtl >= 1 && < 1.2,
                  time >= 1.1 && < 1.2

  ghc-options:  -funbox-strict-fields -Wall