packages feed

timeprint-0.1.0.0: timeprint.cabal

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

name:                timeprint
version:             0.1.0.0
synopsis:            Prints timestamps after each line evaluated
description:        
            Prints timestamps after each line evaluated in ghci.
            
            Use by adding `-interactive-print=Text.Show.TimePrint.timePrint` to the ghci command, or add this to your .ghci file:
            
            import qualified Text.Show.TimePrint
            :set -interactive-print=Text.Show.TimePrint.timePrint

license:             BSD3
license-file:        LICENSE
author:              Justin Chen
maintainer:          iareloser@gmail.com
-- copyright:           
category:            Text
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

library
  exposed-modules:     Text.Show.TimePrint
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.9 && <4.10, time >=1.6 && <1.7
  hs-source-dirs:      src
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://gitlab.com/leftparen/timeprint