aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormichaelt <what_is_it_to_do_anything@yahoo.com>2014-02-04 22:36:55 -0500
committermichaelt <what_is_it_to_do_anything@yahoo.com>2014-02-04 22:36:55 -0500
commit11b2cbe97317e97e5bf532df2d897f96985178cc (patch)
treeca6813f23b4acbf7062d9b8ba6f638df17a6788f
parent409759e855afc27cfab263c1ab1b1fd9ab66d38a (diff)
downloadtext-pipes-11b2cbe97317e97e5bf532df2d897f96985178cc.tar.gz
text-pipes-11b2cbe97317e97e5bf532df2d897f96985178cc.tar.zst
text-pipes-11b2cbe97317e97e5bf532df2d897f96985178cc.zip
verbose project description added.
-rw-r--r--.DS_Storebin6148 -> 6148 bytes
-rw-r--r--pipes-text.cabal25
2 files changed, 15 insertions, 10 deletions
diff --git a/.DS_Store b/.DS_Store
index 1538af8..5008ddf 100644
--- a/.DS_Store
+++ b/.DS_Store
Binary files differ
diff --git a/pipes-text.cabal b/pipes-text.cabal
index fda6f59..1333f92 100644
--- a/pipes-text.cabal
+++ b/pipes-text.cabal
@@ -1,13 +1,15 @@
1name: pipes-text 1name: pipes-text
2version: 0.1.0.0 2version: 0.0.1.0
3synopsis: Text pipes. 3synopsis: Text pipes.
4description: Most of the pipes and other operations defined in `pipes-text` 4description: Many of the pipes and other operations defined here mirror those in
5 closely mirrors the `pipes-bytestring` library, simply adjusting for 5 the `pipes-bytestring` library. Folds like `length` and grouping
6 the difference between strict `ByteString` and strict `Text`, and between 6 operations like `lines` simply adjust for the differences between
7 `Word8` and `Char`. To this core are added some simple functions 7 `ByteString` and `Text` and `Word8` and `Char`. The distinctive feature
8 some akin to the `String` operations in `Pipes.Prelude`, some like the 8 of the library is the `Text/ByteString` encoding and decoding apparatus.
9 utilities in `Data.Text`. 9 .
10 10 To this core are added some simple functions akin to the `String`
11 operations in `Pipes.Prelude`, and others like the utilities in `Data.Text`.
12 .
11 All of the `IO` operations defined here - e.g `readFile`, `stdout` etc. 13 All of the `IO` operations defined here - e.g `readFile`, `stdout` etc.
12 - are conveniences akin to those in `Data.Text.IO` which e.g. try to 14 - are conveniences akin to those in `Data.Text.IO` which e.g. try to
13 find the system encoding and use the exceptions defined in the `text` 15 find the system encoding and use the exceptions defined in the `text`
@@ -15,12 +17,15 @@ description: Most of the pipes and other operations defined in `pipes-te
15 `pipes-bytestring` in conjuntion with 'pure' operations like 17 `pipes-bytestring` in conjuntion with 'pure' operations like
16 `decodeUtf8` and `encodeUtf8` that are defined here. 18 `decodeUtf8` and `encodeUtf8` that are defined here.
17 19
18homepage: github.com/michaelt/text-pipes 20homepage: https://github.com/michaelt/text-pipes
21bug-reports: https://github.com/michaelt/text-pipes/issues
22
19license: BSD3 23license: BSD3
20license-file: LICENSE 24license-file: LICENSE
21author: Michael Thompson 25author: Michael Thompson
22maintainer: what_is_it_to_do_anything@yahoo.com 26maintainer: what_is_it_to_do_anything@yahoo.com
23category: Text, Pipes 27category: Text, Pipes
28
24build-type: Simple 29build-type: Simple
25cabal-version: >=1.10 30cabal-version: >=1.10
26extra-source-files: README.md 31extra-source-files: README.md
@@ -34,7 +39,7 @@ library
34 other-extensions: RankNTypes 39 other-extensions: RankNTypes
35 build-depends: base >= 4 && < 5 , 40 build-depends: base >= 4 && < 5 ,
36 bytestring >=0.10 && < 0.11, 41 bytestring >=0.10 && < 0.11,
37 text >=0.11 && < 0.12, 42 text >=0.11 && < 1.2,
38 profunctors >= 3.1.1 && < 4.1 , 43 profunctors >= 3.1.1 && < 4.1 ,
39 pipes >=4.0 && < 4.2, 44 pipes >=4.0 && < 4.2,
40 pipes-group >= 1.0.0 && < 1.1 , 45 pipes-group >= 1.0.0 && < 1.1 ,