-- 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
x-revision: 1
-- A short (one-line) description of the package.
synopsis: Extra queue utilities for STM
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 && <4.8,
stm >= 2.4.3,
stm-chans >= 3.0.0.2
hs-source-dirs: src
default-language: Haskell2010