concurrent-rpc-0.1.0.0: concurrent-rpc.cabal
name: concurrent-rpc
version: 0.1.0.0
synopsis: An abstraction for inter-thread RPC based on MVars
description:
This library is small wrapper around `Control.Concurrent.MVar.MVar`s that can
be used to implement request-response communication between different threads.
homepage: https://github.com/lpeterse/haskell-concurrent-rpc
license: MIT
license-file: LICENSE
author: Lars Petersen
maintainer: info@lars-petersen.net
category: Concurrency
build-type: Simple
cabal-version: >=1.10
extra-source-files: MissileLauncher.hs,
README.md
library
ghc-options: -Wall
exposed-modules: Control.Concurrent.RPC
build-depends: base >=4.7 && <5
hs-source-dirs: src
default-language: Haskell2010