packages feed

fixed-timestep-0.2.0.0: fixed-timestep.cabal

cabal-version:       2.2
-- Initial package description 'fixed-timestep.cabal' generated by 'cabal
-- init'.  For further documentation, see
-- http://haskell.org/cabal/users-guide/

name:                fixed-timestep
version:             0.2.0.0
synopsis:            Pure Haskell library to repeat an action at a specific frequency.
description:         Repeat IO actions at a specific frequency, using
                     flicks (1/705600000 of a second) for timekeeping.
                     Also contains a simple implementation of flicks.
homepage:            https://github.com/Solonarv/fixed-timestep#README
bug-reports:         https://github.com/Solonarv/fixed-timestep/issues
license:             MIT
license-file:        LICENSE
author:              Solonarv
maintainer:          Nicolas Stamm <nstamm@gmx.de>
copyright:           2019 Nicolas Stamm (Solonarv)
category:            Time
extra-source-files:  CHANGELOG.md, README.md

source-repository head
  type:     git
  location: git://github.com/Solonarv/fixed-timestep.git

library
  exposed-modules:     Time.Flick
                     , Time.Repeatedly
  -- other-modules:
  other-extensions:    DerivingStrategies GeneralizedNewtypeDeriving NamedFieldPuns
                       ScopedTypeVariables
  build-depends:       base >= 4.10 && < 4.13
                     , clock ^>= 0.7
                     , async >= 2.0.1.0 && < 2.3
                     , time >= 1.6 && < 1.10
  hs-source-dirs:      lib
  default-language:    Haskell2010