packages feed

stm-chans-3.0.0.9: stm-chans.cabal

Cabal-Version:  2.2
-- Cabal >=2.2 is required for:
--    <https://cabal.readthedocs.io/en/latest/cabal-package.html#common-stanzas>
-- Since 2.1, the Cabal-Version must be the absolutely first thing
-- in the file, even before comments.  Also, no longer uses ">=".
--    <https://github.com/haskell/cabal/issues/4899>

----------------------------------------------------------------
-- wren gayle romano <wren@cpan.org>                ~ 2023.03.19
----------------------------------------------------------------

Name:           stm-chans
Version:        3.0.0.9
Build-Type:     Simple
Stability:      provisional
Homepage:       https://wrengr.org/software/hackage.html
Bug-Reports:    https://github.com/wrengr/stm-chans/issues
Author:         wren gayle romano, Thomas DuBuisson
Maintainer:     wren@cpan.org
Copyright:      2011–2023 wren romano
-- Cabal-2.2 requires us to say "BSD-3-Clause" not "BSD3"
License:        BSD-3-Clause
License-File:   LICENSE

Category:       Concurrency
Synopsis:       Additional types of channels for STM.
Description:    Additional types of channels for STM.

Extra-source-files:
    AUTHORS, README.md, CHANGELOG

-- This used to be tested on 7.8.3 and 7.10.1, but we don't verify that by CI.
-- <https://github.com/wrengr/stm-chans/actions?query=workflow%3Aci>
Tested-With:
    GHC ==8.0.2,
    GHC ==8.2.2,
    GHC ==8.4.4,
    GHC ==8.6.5,
    GHC ==8.8.4,
    GHC ==8.10.3,
    GHC ==9.0.1,
    GHC ==9.2.4,
    GHC ==9.4.4,
    GHC ==9.6.1

----------------------------------------------------------------
Source-Repository head
    Type:     git
    Location: https://github.com/wrengr/stm-chans.git

----------------------------------------------------------------
Library
    Default-Language: Haskell2010
    -- N.B., the following versions are required for:
    -- * stm >= 2.4:   T{,B}Queue and newBroadcastTChan{,IO}
    -- * stm >= 2.3.0: fast tryReadTChan, peekTChan, tryPeekTChan,
    --         tryReadTMVar, modifyTVar, modifyTVar', swapTVar.
    -- * stm >= 2.1.2: fast readTVarIO.
    --
    -- Not sure what the real minbound is for base...
    Build-Depends: base >= 4.1 && < 5
                 , stm  >= 2.4

    Hs-Source-Dirs:  src
    Exposed-Modules: Control.Concurrent.STM.TBChan
                   , Control.Concurrent.STM.TBMChan
                   , Control.Concurrent.STM.TMChan
                   , Control.Concurrent.STM.TBMQueue
                   , Control.Concurrent.STM.TMQueue

----------------------------------------------------------------
----------------------------------------------------------- fin.