packages feed

timestats-0.1.3: timestats.cabal

cabal-version:      2.4
name:               timestats
version:            0.1.3

synopsis: A library for profiling time in Haskell applications

homepage:    https://github.com/tweag/timestats
bug-reports: https://github.com/tweag/timestats/issues

copyright:  2022 EURL Tweag
license:    BSD-3-Clause
author:     Facundo Domínguez
maintainer: facundo.dominguez@tweag.io

category: Profiling
extra-source-files:
    CHANGELOG.md
    README.md

flag devel
  default:     False
  manual:      True
  description: Enable more warnings and fail compilation when warnings occur.
               Turn this flag on in CI.

library
    exposed-modules:  Debug.TimeStats
                      Debug.TimeStats.Internal
    build-depends:    base <5, containers, text
    hs-source-dirs:   src
    default-language: Haskell2010
    if flag(devel)
      ghc-options:      -Wall -Werror

test-suite tests
  type: exitcode-stdio-1.0
  main-is: Main.hs
  build-depends: base, text, timestats
  if flag(devel)
    ghc-options: -Wall -Werror
  hs-source-dirs: tests
  default-language: Haskell2010