name: concurrent-utilities
-- 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.1
synopsis: More utilities and broad-used datastructures for concurrency.
description: More utilities and broad-used datastructures for concurrency.
homepage: -
license: BSD3
license-file: LICENSE
author: Sebastiaan la Fleur
maintainer: sebastiaan.la.fleur@gmail.com
copyright: University of Twente 2015 | Sebastiaan la Fleur 2015
category: Concurrency
build-type: Simple
-- Extra files to be distributed with the package, such as examples or a
-- README.
-- extra-source-files:
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10
library
-- Modules exported by the library.
exposed-modules: Control.Concurrent.ExceptionCollection,
Control.Concurrent.ExceptionUtility,
Control.Concurrent.SafePrint,
Control.Concurrent.Thread,
Control.Concurrent.Datastructures.ThreadWaitQueue,
Control.Concurrent.Datastructures.BlockingConcurrentQueue
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Other library packages from which modules are imported.
build-depends: base >=4.8 && <4.11
-- Directories containing source files.
hs-source-dirs: src
-- Base language which the package is written in.
default-language: Haskell2010