-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontrol-monad-loop.cabal
More file actions
39 lines (34 loc) · 1.16 KB
/
control-monad-loop.cabal
File metadata and controls
39 lines (34 loc) · 1.16 KB
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
34
35
36
37
38
39
name: control-monad-loop
version: 0.1
synopsis: Simple monad transformer for imperative-style loops
description:
A library of looping constructs with @continue@ and @exit@ control flow
statements.
homepage: https://github.com/joeyadams/haskell-control-monad-loop
bug-reports: https://github.com/joeyadams/haskell-control-monad-loop/issues
license: BSD3
license-file: LICENSE
author: Joey Adams
maintainer: joeyadams3.14159@gmail.com
copyright: Copyright (c) Joseph Adams 2012
category: Control
build-type: Simple
cabal-version: >=1.8
extra-source-files:
test/leak.hs
test/leak.expected
test/liftLocal.hs
test/liftLocal.expected
test/lift-continue.hs
test/lift-continue.expected
test/recycled-numbers.hs
source-repository head
type: git
location: git://github.com/joeyadams/haskell-control-monad-loop
library
exposed-modules:
Control.Monad.Trans.Loop
build-depends : base >= 4 && < 5
, transformers
, transformers-base
ghc-options: -Wall -fwarn-tabs