-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpipes-group.cabal
50 lines (48 loc) · 1.5 KB
/
pipes-group.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
45
46
47
48
49
50
Name: pipes-group
Version: 1.0.12
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: 2014 Gabriella Gonzalez
Author: Gabriella Gonzalez
Maintainer: [email protected]
Bug-Reports: https://github.com/Gabriella439/pipes-group/issues
Synopsis: Group streams into substreams
Description: @pipes-group@ uses @FreeT@ and lenses to group streams into
sub-streams. Notable features include:
.
* /Perfect Streaming/: Group elements without collecting them into memory
.
* /Lens Support/: Use lenses to simplify many common operations
.
@Pipes.Group@ contains the full documentation for this library.
.
Read @Pipes.Group.Tutorial@ for an extensive tutorial.
Category: Control, Pipes
Source-Repository head
Type: git
Location: https://github.com/Gabriella439/pipes-group
Library
HS-Source-Dirs: src
Default-Language: Haskell2010
Build-Depends:
base >= 4 && < 5 ,
free >= 3.2 && < 5.3,
pipes >= 4.0 && < 4.4,
pipes-parse >= 3.0.0 && < 3.1,
transformers >= 0.2.0.0 && < 0.7
Exposed-Modules:
Pipes.Group
Pipes.Group.Tutorial
GHC-Options: -O2 -Wall
Test-Suite tests
Type: exitcode-stdio-1.0
HS-Source-Dirs: test
Main-Is: Main.hs
GHC-Options: -Wall
Default-Language: Haskell2010
Build-Depends:
base >= 4 && < 5 ,
lens-family-core < 2.2,
doctest >= 0.9.12