packages feed

criterion-compare-0.1.0.0: criterion-compare.cabal

name:                criterion-compare
version:             0.1.0.0
synopsis:            A simple tool for visualising differences in Criterion benchmark results
description:         Create a html file containing a quick comparison of results for the input files.
homepage:            http://github.com/AndreasPK/criterion-compare
license:             BSD3
license-file:        LICENSE
author:              Ben Gamari <ben@well-typed.com>
maintainer:          ben@well-typed.com, klebinger.andreas@gmx.at
copyright:           (c) 2016 Ben Gamari
category:            Development
build-type:          Simple
extra-source-files:  ChangeLog.md, README.md
cabal-version:       >=1.10

executable criterion-compare
  main-is:             CriterionCompare.hs
  other-modules:       CsvParse, Plot, Style, Types
  hs-source-dirs:      src
  other-extensions:    GeneralizedNewtypeDeriving, RecordWildCards, OverloadedStrings, FlexibleContexts, TupleSections
  default-language:    Haskell2010
  build-depends:       base >=4.9 && <= 4.13,
                       cassava >=0.5 && <0.6,
                       containers >=0.6 && <0.7,
                       Chart >=1.6 && < 1.10,
                       data-default >=0.5 && < 7.2,
                       lens >=4.13  && < 4.18,
                       colour >=2.3 && < 2.4,
                       text >=1.2  && < 1.3,
                       filepath >=1.4 && <1.5,
                       lucid >=2.9 && < 2.10,
                       Chart-diagrams >=1.6 && < 1.10,
                       optparse-applicative >=0.12 && < 0.16,
                       clay >=0.10 && < 0.14,
                       vector >=0.11 && < 0.13,
                       bytestring >=0.10 && < 0.11

source-repository head
  type:     git
  location: https://github.com/AndreasPK/criterion-compare.git