-
Notifications
You must be signed in to change notification settings - Fork 0
/
io-region.cabal
44 lines (41 loc) · 1.46 KB
/
io-region.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
42
43
44
name: io-region
version: 0.2.0
synopsis: Exception safe resource management with dynamic regions
license: BSD3
license-file: LICENSE
author: Yuras Shumovich
maintainer: [email protected]
copyright: Copyright (c) Yuras Shumovich 2015
homepage: https://github.com/Yuras/io-region
category: Control
build-type: Simple
cabal-version: >=1.10
description:
Region owns resources and automatically frees them on exit.
It is a plain old data type, so it is possible to pass it to functions,
put into mutable references, store in regular data types.
.
Resources can be freed earler or transfered to other regions.
.
Region itself can be used as any other resource. E.g. one region
can own other one.
extra-source-files: changelog.md
source-repository head
type: git
location: [email protected]/Yuras/io-region.git
library
exposed-modules: Control.IO.Region
Control.IO.Region.Internal
build-depends: base >= 4.5 && < 5.0,
stm
hs-source-dirs: lib
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
build-depends: base,
hspec,
transformers,
io-region
default-language: Haskell2010