packages feed

time-exts-3.0.2: time-exts.cabal

name:          time-exts
version:       3.0.2
synopsis:      Yet another time library
license:       BSD3
license-file:  LICENSE
copyright:     2013-2016 Enzo Haussecker
author:        Enzo Haussecker <enzo@sovereign.io>
maintainer:    Enzo Haussecker <enzo@sovereign.io>
stability:     Stable
category:      Time
homepage:      https://github.com/enzoh/time-exts
bug-reports:   https://github.com/enzoh/time-exts/issues
build-type:    Simple
cabal-version: >=1.10

library
   default-language:
      Haskell2010
   exposed-modules:
      Data.Time.Exts
      Data.Time.Exts.Base
      Data.Time.Exts.Format
      Data.Time.Exts.UTC
      Data.Time.Exts.Unix
   other-modules:
      Data.Time.Exts.Lens
      Data.Time.Exts.Parser
      Data.Time.Exts.Util
      Foreign.C.Time
   build-depends:
      attoparsec,
      base >=4.8 && <4.10,
      bindings-DSL,
      deepseq,
      lens-simple,
      mtl,
      old-locale,
      random,
      text,
      time,
      tz
   ghc-options:
      -Wall

test-suite time-exts-unit-tests
   default-language:
      Haskell2010
   type:
      exitcode-stdio-1.0
   main-is:
      Test.hs
   other-modules:
      Data.Time.Exts.Base
      Data.Time.Exts.Format
      Data.Time.Exts.Lens
      Data.Time.Exts.Parser
      Data.Time.Exts.Unix
      Data.Time.Exts.Util
      Foreign.C.Time
   build-depends:
      attoparsec,
      base,
      bindings-DSL,
      deepseq,
      HUnit,
      ieee754,
      lens-simple,
      mtl,
      old-locale,
      QuickCheck,
      random,
      text,
      time,
      tz
   ghc-options:
      -Wall