packages feed

apecs-effectful-0.1.0.0: apecs-effectful.cabal

cabal-version:   3.0
name:            apecs-effectful
version:         0.1.0.0
synopsis:        Adaptation of the apecs library for the effectful ecosystem.
description:     Please see the README on GitHub at <https://github.com/typedbyte/apecs-effectful#readme>
homepage:        https://github.com/typedbyte/apecs-effectful
bug-reports:     https://github.com/typedbyte/apecs-effectful/issues
license:         BSD-3-Clause
license-file:    LICENSE
author:          Michael Szvetits
maintainer:      typedbyte@qualified.name
copyright:       2023 Michael Szvetits
category:        Game
build-type:      Simple
extra-doc-files:
  CHANGELOG.md
  README.md

common shared-properties
  default-language: GHC2021
  build-depends:
      base >= 4.16.0 && < 5
  ghc-options:
      -Wall

library
  import: shared-properties
  hs-source-dirs: src
  build-depends:
      apecs          >= 0.9.3  && < 0.10
    , effectful-core >= 2.0    && < 2.3
    , vector         >= 0.11.0 && < 0.14
  exposed-modules:
      Apecs.Effectful