cabal-version: 2.4 name: stm-actor version: 0.3.1.0 license: MIT license-file: LICENSE synopsis: A simplistic actor model based on STM description: A simplistic actor model based on STM. author: Samuel Schlesinger maintainer: samuel@simspace.com copyright: 2020 Samuel Schlesinger category: Control build-type: Simple extra-source-files: CHANGELOG.md source-repository head type: git location: https://github.com/samuelschlesinger/stm-actor library exposed-modules: Control.Concurrent.Actor build-depends: base >=4.12 && <4.18, stm >=2.1, stm-queue >=0.2, mtl >=1.0, unliftio-core >= 0.2, transformers >=0.2 hs-source-dirs: src default-language: Haskell2010 test-suite stm-actor-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Test.hs build-depends: base >=4.12 && <4.18, stm >=2.1, stm-queue >=0.2, hspec >=2.7.4, mtl >=1.0, stm-actor other-extensions: PostfixOperators, TypeApplications, BlockArguments default-language: Haskell2010