-
Notifications
You must be signed in to change notification settings - Fork 3
/
arrow-list.cabal
44 lines (41 loc) · 1.37 KB
/
arrow-list.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
34
35
36
37
38
39
40
41
42
43
44
name: arrow-list
version: 0.7.1
synopsis: List arrows for Haskell.
description:
This small Haskell library provides some type class, types and functions to
work with list (and list-like) arrows. List arrows represent computations
that may return multiple outputs. Making functions that return lists an
instance of both the `Category` and `Arrow` type class allow you to easily
compose multiple computations into one with standard building blocks.
author: Sebastiaan Visser
maintainer: [email protected]
category: Control
license: BSD3
homepage: https://github.com/silkapp/arrow-list
bug-reports: https://github.com/silkapp/arrow-list/issues
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
CHANGELOG.md
LICENSE
README.md
source-repository head
type: git
location: https://github.com/silkapp/arrow-list.git
library
ghc-options: -Wall
hs-source-dirs: src
exposed-modules:
Control.Arrow.Kleisli.Class
Control.Arrow.List.Class
Control.Arrow.ListLike.Class
Control.Arrow.List
Control.Arrow.Sequence
Control.Monad.Sequence
build-depends:
base ==4.*
, containers >= 0.3 && < 0.7
, fail == 4.9.*
, mtl >= 1.1 && < 2.3
default-language: Haskell2010