-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstm-queue-extras.cabal
More file actions
37 lines (31 loc) · 1.32 KB
/
stm-queue-extras.cabal
File metadata and controls
37 lines (31 loc) · 1.32 KB
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
-- The name of the package.
name: stm-queue-extras
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.2.0.0.1
synopsis: Extra queue utilities for STM
description: Granular signatures for STM queues
license: Apache-2.0
license-file: LICENSE
author: Jon Sterling
maintainer: jon@jonmsterling.com
copyright: Copyright (c) 2014 PivotCloud, Inc.
category: Concurrency
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/alephcloud/hs-stm-queue-extras.git
library
exposed-modules: Control.Concurrent.STM.Queue,
Control.Concurrent.STM.BoundedQueue
Control.Concurrent.STM.CloseableQueue
build-depends: base >=4.7 && <5.0,
stm >= 2.4.3,
stm-chans >= 3.0.0.2
hs-source-dirs: src
default-language: Haskell2010