stopwatch-0.1.0: stopwatch.cabal
name: stopwatch
version: 0.1.0
author: Toshio Ito <debug.ito@gmail.com>
maintainer: Toshio Ito <debug.ito@gmail.com>
license: BSD3
license-file: LICENSE
synopsis: A simple stopwatch utility
description: A simple stopwatch utility
category: Control
cabal-version: >= 1.10
build-type: Simple
extra-source-files: README.md, ChangeLog.md
homepage: https://github.com/debug-ito/stopwatch
bug-reports: https://github.com/debug-ito/stopwatch/issues
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Control.StopWatch
-- other-modules:
build-depends: base >=2 && <6,
transformers >=0.3.0 && <0.5,
clock >=0.5 && <0.6
-- executable stopwatch
-- default-language: Haskell2010
-- hs-source-dirs: src
-- main-is: Main.hs
-- ghc-options: -Wall
-- -- other-modules:
-- -- other-extensions:
-- build-depends: base >=4 && <5
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -Wall
main-is: Spec.hs
other-modules: Control.StopWatchSpec
build-depends: base, stopwatch,
hspec,
clock
source-repository head
type: git
location: https://github.com/debug-ito/stopwatch.git