packages feed

apecs-stm-0.2: apecs-stm.cabal

name:               apecs-stm
version:            0.2
homepage:           https://github.com/jonascarpay/apecs
license:            BSD3
license-file:       LICENSE
author:             Jonas Carpay
maintainer:         jonascarpay@gmail.com
category:           Game, Control, Data
build-type:         Simple
cabal-version:      >=1.10
synopsis:           STM stores for apecs
description:        Apecs stores that live in the STM monad, and other tools.
extra-source-files:
  CHANGELOG.md
  README.md

source-repository head
  type:     git
  location: git://github.com/jonascarpay/apecs.git

library
  hs-source-dirs:   src
  exposed-modules:
    Apecs.STM
    Apecs.STM.Prelude

  default-language: Haskell2010
  build-depends:
      apecs             >=0.9.3 && <0.10
    , base              >=4.9   && <5
    , containers        >=0.5   && <0.8
    , list-t            >=1     && <1.2
    , stm               >=2.3   && <3
    , stm-containers    >=1.1   && <2
    , template-haskell  >=2.12  && <3
    , vector            >=0.10  && <0.14

  ghc-options:      -Wall