time-out-0.1: time-out.cabal
name: time-out
version: 0.1
cabal-version: >=1.10
build-type: Simple
license: PublicDomain
license-file: COPYING
copyright: ♡ Copying is an act of love. Please copy, reuse and share.
maintainer: fr33domlover@riseup.net
homepage: http://hub.darcs.net/fr33domlover/time-out
bug-reports: mailto:fr33domlover@riseup.net
synopsis: Execute a computation with a timeout
description:
This simple library allows you to execute a computation with a limit on its
running time. If it finishes within the specified limit, you get the result
it returns. Otherwise, i.e. if it doesn't finish in time, it will be aborted
and you'll be notified.
category: Control, Monad, Network
author: fr33domlover
extra-source-files:
AUTHORS
ChangeLog
COPYING
INSTALL.md
NEWS.md
README.md
source-repository head
type: darcs
location: http://hub.darcs.net/fr33domlover/time-out
library
exposed-modules:
Control.TimeOut
build-depends:
base >=4.8 && <5,
exceptions >=0.8.2.1,
time-units >=1.0.0,
transformers >=0.4.2.0
default-language: Haskell2010
hs-source-dirs: src