packages feed

om-time-0.3.0.4: om-time.cabal

cabal-version:       3.0
name:                om-time
version:             0.3.0.4
synopsis:            Misc. time utilites
description:         A monad interface for obtain the current TimeSpec, along
                     with a few other utilities.
license:             MIT
license-file:        LICENSE
author:              Rick Owens
maintainer:          rick@owensmurray.com
copyright:           2022 Rick Owens
-- category:
build-type:          Simple
extra-source-files:
  LICENSE
  README.md

common dependencies
  build-depends:
    , aeson        >= 2.1.2.1  && < 2.3
    , base         >= 4.15.1.0 && < 4.20
    , binary       >= 0.8.9.1  && < 0.9
    , clock        >= 0.8.3    && < 0.9
    , time         >= 1.12.2   && < 1.13
    , transformers >= 0.5.6.2  && < 0.7

common warnings
  ghc-options:
    -Wmissing-deriving-strategies
    -Wmissing-export-lists
    -Wmissing-import-lists
    -Wredundant-constraints
    -Wall


library
  import: dependencies, warnings
  exposed-modules:
    OM.Time
  -- other-modules:
  -- other-extensions:
  hs-source-dirs: src
  default-language: Haskell2010