packages feed

canteven-parsedate-1.0.1.2: canteven-parsedate.cabal

name:                canteven-parsedate
version:             1.0.1.2
synopsis:            Date / time parsing utilities that try to guess the date / time format.
-- description:         
license:             Apache-2.0
license-file:        LICENSE
author:              Rick Owens, Alex Babkin
maintainer:          rowens@sumall.com, ababkin@sumall.com
-- copyright:           
-- category:            
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:
    Canteven.ParseDate,
    Canteven.ParseDate.Types
  -- other-modules:       
  -- other-extensions:    
  build-depends:
    base >=4.7 && <4.9,
    time >=1.5 && < 1.6,
    timezone-series,
    tz
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options: -Wall

Test-Suite test-parsedate
  type: detailed-0.9
  hs-source-dirs: test
  test-module: Canteven.TestParseDate
  -- FIXME. WTF is going on with the time library
  build-depends:
    Cabal>=1.20,
    base,
    canteven-parsedate,
    old-locale,
    time >=1.4.2 && < 1.6,
    timezone-series,
    tz
  default-language:    Haskell2010
  ghc-options: -Wall