-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstm-actor.cabal
41 lines (38 loc) · 1.36 KB
/
stm-actor.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
cabal-version: 2.4
name: stm-actor
version: 0.3.1.1
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: [email protected]
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 && < 5,
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