packages feed

monad-timing-0.1.0.0: monad-timing.cabal

-- Initial monad-timing.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                monad-timing
version:             0.1.0.0
synopsis:            Monad transformer for recording timing events
description:         Monad transformer for recording timing events
homepage:            https://github.com/pikajude/monad-timing
license:             MIT
license-file:        LICENSE
author:              Jude Taylor
maintainer:          me@jude.bio
category:            Control
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/pikajude/monad-timing

library
  exposed-modules:     Control.Monad.Timing
  build-depends:       base ==4.*
                     , containers
                     , exceptions
                     , mtl
                     , monad-control
                     , time
                     , transformers
                     , transformers-base
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite hlint
  type:                exitcode-stdio-1.0
  main-is:             hlint.hs
  build-depends:       base, hlint
  hs-source-dirs:      test
  default-language:    Haskell2010
  ghc-options:         -w -threaded -rtsopts -with-rtsopts=-N