packages feed

threadmanager 0.1.6 → 0.1.7

raw patch · 3 files changed

+26/−15 lines, 3 filesdep ~basedep ~containers

Dependency ranges changed: base, containers

Files

+ README.md view
@@ -0,0 +1,9 @@+*This package is useful, but deprecated. In new code, please use [threads][1]+instead.*++A simple thread management API inspired by the one in [chapter 24][2] of+[Real World Haskell][3].++[1]: http://hackage.haskell.org/package/threads+[2]: http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html+[3]: http://book.realworldhaskell.org/
src/Control/Concurrent/ThreadManager.hs view
@@ -1,11 +1,8 @@-{-|-  A simple thread management API inspired by the one in chapter-  24 of /Real World Haskell/.--  See <http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html>.--  Intended to be imported qualified (suggestion: TM).- -}+-- | Intended to be imported qualified, as in+--+-- @+-- import qualified Control.Concurrent.ThreadManager as TM+-- @  module Control.Concurrent.ThreadManager   ( ThreadManager
threadmanager.cabal view
@@ -1,5 +1,5 @@ name:         threadmanager-version:      0.1.6+version:      0.1.7 category:     Concurrency  author:       _Real World Haskell_, http://www.realworldhaskell.org/@@ -10,17 +10,22 @@  synopsis:     (deprecated in favor of 'threads') Simple thread management description:-  This package is useful, but deprecated. In new code, please use /threads/-  instead. See <http://hackage.haskell.org/package/threads>.+  This package is useful, but deprecated. In new code, please use+  <http://hackage.haskell.org/package/threads threads> instead.   .-  A simple thread management API inspired by the one in chapter 24 of-  /Real World Haskell/. See <http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html>.+  A simple thread management API inspired by the one in+  <http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html chapter 24 of Real World Haskell>.  cabal-version: >= 1.10 build-type:    Simple  -------------------------------------------------------------------------------- +extra-source-files:+  README.md++--------------------------------------------------------------------------------+ library   default-language: Haskell2010 @@ -35,8 +40,8 @@     src    build-depends:-    base       == 4.*,-    containers == 0.*+    base        > 3 && < 5,+    containers == 0.5.*  --------------------------------------------------------------------------------