packages feed

atomic-modify-0.1.0.1: atomic-modify.cabal

-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: b47558f51afd9007c96683e4f3ac5b24a8d05dcb4a8ab911849c4a7f9fbdbd57

name:           atomic-modify
version:        0.1.0.1
synopsis:       A typeclass for mutable references that have an atomic modify operation.

description:    A typeclass for mutable references that have an atomic modify operation. Generalizes atomic modify operations in IO and STM contexts for IORef, MVar, TVar, and TMVar.
category:       Concurrency
homepage:       https://github.com/chris-martin/atomic-modify
author:         Chris Martin <ch.martin@gmail.com>
maintainer:     Chris Martin <ch.martin@gmail.com>
license:        Apache-2.0
license-file:   license.txt
build-type:     Simple
cabal-version:  >= 1.10

library
  hs-source-dirs:
      src
  default-extensions: NoImplicitPrelude
  ghc-options: -Wall
  build-depends:
      base >=4.9 && <4.11
    , stm
  exposed-modules:
      Control.Concurrent.AtomicModify
  other-modules:
      Paths_atomic_modify
  default-language: Haskell2010