-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmapmvar.cabal
63 lines (58 loc) · 1.5 KB
/
tmapmvar.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
-- This file has been generated from package.yaml by hpack version 0.21.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 6dee76e4c802835ab45bbb37cd6c71a032a7d1fc5569bd5c505b4465dd840551
name: tmapmvar
version: 0.0.4
synopsis: A single-entity stateful Map in STM, similar to tmapchan
description: Please see the README on Github at <https://git.localcooking.com/tooling/tmapmvar#readme>
author: Athan Clark
maintainer: athan.clark@localcooking.com
copyright: 2018 Local Cooking Inc.
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
source-repository head
type: git
location: git://git.localcooking.com/tooling/tmapmvar.git
library
exposed-modules:
Control.Concurrent.STM.TMapMVar
Control.Concurrent.STM.TMapMVar.Hash
other-modules:
Paths_tmapmvar
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, containers
, hashable
, stm
, unordered-containers
default-language: Haskell2010
test-suite tmapmvar-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_tmapmvar
hs-source-dirs:
test
ghc-options: -Wall -threaded -rtsopts -Wall -with-rtsopts=-N
build-depends:
QuickCheck
, async
, base >=4.7 && <5
, containers
, hashable
, quickcheck-instances
, stm
, tasty
, tasty-quickcheck
, tmapmvar
, unordered-containers
default-language: Haskell2010