-
Notifications
You must be signed in to change notification settings - Fork 1
/
progress-reporting.cabal
33 lines (31 loc) · 1.27 KB
/
progress-reporting.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: progress-reporting
version: 1.2.0
synopsis: Functionality for reporting function progress.
description: This module provides a set of functions for writing
functions that report their own progress in a monadic
context, which can be evaluated to get progress reports
while time-consuming functions are running.
license: LGPL-3
license-file: LICENSE
author: Jeroen Bransen
maintainer: [email protected]
copyright: (c) 2017 Chordify B.V., Groningen
category: Control
build-type: Simple
cabal-version: >=1.10
bug-reports: https://github.com/chordify/progress-reporting/issues
extra-source-files: changelog.md
source-repository head
type: git
location: https://github.com/chordify/progress-reporting.git
library
exposed-modules: Control.Monad.Progress
other-extensions: GADTs, ScopedTypeVariables
build-depends: base >=4.6,
deepseq >=1.3,
exceptions >= 0.1,
mtl >=2.1,
time >=1.4
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O2