event-0.1: event.cabal
name: event
version: 0.1
synopsis: Monoidal, monadic and first-class events
description: This package can be used to represent events as
first-class objects instead of deepening callbacks and
nesting callbacks. Useful to wrap over __C__ callback-based
libraries.
license: BSD3
license-file: LICENSE
author: Dimitri Sabadie <dimitri.sabadie@gmail.com>
maintainer: Dimitri Sabadie <dimitri.sabadie@gmail.com>
copyright: Dimitri Sabadie
category: Concurrency
extra-source-files: CHANGELOG.md
bug-reports: https://github.com/phaazon/event/issues
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/phaazon/event.git
library
ghc-options: -W -Wall
exposed-modules: Control.Concurrent.Event
build-depends: base >= 4.8 && < 4.9
, transformers >= 0.4 && < 0.5
, containers >= 0.5 && < 0.6
, semigroups >= 0.16 && < 0.17
hs-source-dirs: src
default-language: Haskell2010