-
Notifications
You must be signed in to change notification settings - Fork 1
/
ivar-simple.cabal
39 lines (36 loc) · 998 Bytes
/
ivar-simple.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
name: ivar-simple
version: 0.3.3
category: Concurrency
stability: experimental
copyright: (c) 2008-2020 Bertram Felgenhauer
maintainer: Bertram Felgenhauer <int-e@gmx.de>
license: MIT
license-file: LICENSE
synopsis: Write once concurrency primitives.
description:
@IVar@s are write-once (immutable) variables.
.
They can be read, an operation that will block until a value was written
to the variable. They can be written to exactly once.
cabal-version: >= 1.10
build-type: Simple
extra-source-files:
README.md
Changelog
Sample.hs
source-repository head
type: git
location: https://github.com/int-e/ivar-simple
library
hs-source-dirs:
src
exposed-modules:
Data.IVar.Simple
Data.IVar.Simple.IChan
Data.IVar.Simple.MIChan
default-language:
Haskell2010
build-depends:
base >= 4.7 && < 5
other-extensions:
DeriveDataTypeable