timestats-0.1.0: timestats.cabal
cabal-version: 2.4
name: timestats
version: 0.1.0
synopsis: A library for profiling time in Haskell applications
description: A simple library for profiling time that can help when more
sophisticated tools aren't available or needed.
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
source-repository head
type: git
location: https://github.com/tweag/timestats
tag: v0.1.0
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
build-depends: base >=4.14 && <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