2014-12-18 14:03:17 +03:00
|
|
|
-- Initial monad-conc.cabal generated by cabal init. For further
|
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: monad-conc
|
|
|
|
version: 0.0.0.0
|
|
|
|
synopsis: Overloadable primitives for potentially non-deterministic concurrency.
|
|
|
|
-- description:
|
|
|
|
homepage: https://github.com/barrucadu/monad-conc
|
|
|
|
license: WTFPL
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Michael Walker
|
|
|
|
maintainer: mike@barrucadu.co.uk
|
|
|
|
-- copyright:
|
|
|
|
category: Concurrency
|
|
|
|
build-type: Simple
|
|
|
|
-- extra-source-files:
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules: Control.Monad.Conc.Class
|
2014-12-19 09:45:50 +03:00
|
|
|
, Control.Monad.Conc.Fixed
|
2014-12-18 14:03:17 +03:00
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
2014-12-20 00:30:38 +03:00
|
|
|
build-depends: base >=4.6 && <5
|
2014-12-19 09:45:50 +03:00
|
|
|
, containers
|
|
|
|
, mtl
|
2014-12-19 10:09:26 +03:00
|
|
|
, random
|
2014-12-19 09:45:50 +03:00
|
|
|
, transformers
|
2014-12-18 14:03:17 +03:00
|
|
|
-- hs-source-dirs:
|
|
|
|
default-language: Haskell2010
|