packages feed

perf-0.4.0.1: perf.cabal

-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 44e8680f9c9810c48b2593a9217d338cc2c64b8884b984279b7337dbaae4eb9d

name:           perf
version:        0.4.0.1
synopsis:       Low-level run time measurement.
description:     A set of tools to accurately measure time performance of Haskell programs.
                perf aims to be lightweight by having minimal dependencies on standard libraries.
                See the Perf module for an example and full API documentation. 
category:       project
homepage:       https://github.com/tonyday567/perf#readme
bug-reports:    https://github.com/tonyday567/perf/issues
author:         Tony Day, Marco Zocca
maintainer:     tonyday567@gmail.com
copyright:      Tony Day
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    CHANGELOG.md
    stack.yaml

source-repository head
  type: git
  location: https://github.com/tonyday567/perf

library
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
  build-depends:
      base >=4.7 && <4.12
    , containers
    , deepseq
    , foldl
    , rdtsc
    , text
    , time
    , transformers
  exposed-modules:
      Perf
      Perf.Measure
      Perf.Cycle
  other-modules:
      Paths_perf
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: test.hs
  hs-source-dirs:
      test
  ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
  build-depends:
      base >=4.7 && <4.12
    , doctest
  other-modules:
      Paths_perf
  default-language: Haskell2010