-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhsmsgs.cabal
37 lines (24 loc) · 909 Bytes
/
hsmsgs.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
cabal-version: 2.4
name: hsmsgs
version: 0.1.0.0
synopsis: A basic implementation of the Actor Model in Haskell
description: Not a very idiomatic way to programme concurrently in Haskell. A basic implementation of an Erlang-style Actor Model.
author: dan
maintainer: [email protected]
license-file: LICENCE
library
exposed-modules: Erlangesque
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
other-extensions: LambdaCase
build-depends: base ^>=4.14.1.0, stm, containers
hs-source-dirs: src
default-language: Haskell2010
executable hsmsgs
main-is: Main.hs
other-extensions: LambdaCase
build-depends: base ^>=4.14.1.0,
hsmsgs
hs-source-dirs: app
default-language: Haskell2010