diff options
author | michaelt <what_is_it_to_do_anything@yahoo.com> | 2014-02-05 04:35:05 -0500 |
---|---|---|
committer | michaelt <what_is_it_to_do_anything@yahoo.com> | 2014-02-05 04:35:05 -0500 |
commit | 02bc50d59d3312f8848f6aa3a2535828516eb135 (patch) | |
tree | 7a13bde6c7d492f6b144910960f71663d3a06cd4 | |
parent | 11777d08714298b5f56c9d49460d094caf49bcba (diff) | |
download | text-pipes-02bc50d59d3312f8848f6aa3a2535828516eb135.tar.gz text-pipes-02bc50d59d3312f8848f6aa3a2535828516eb135.tar.zst text-pipes-02bc50d59d3312f8848f6aa3a2535828516eb135.zip |
cabal file more descriptive
-rw-r--r-- | changelog | 5 | ||||
-rw-r--r-- | pipes-text.cabal | 12 |
2 files changed, 12 insertions, 5 deletions
@@ -1,7 +1,10 @@ | |||
1 | # Version 0.0.0.1 | 1 | # Version 0.0.0.2 |
2 | 2 | ||
3 | * Omit `stdinLn` as likely to be dangerous through misunderstanding. | 3 | * Omit `stdinLn` as likely to be dangerous through misunderstanding. |
4 | 4 | ||
5 | |||
6 | # Version 0.0.0.1 | ||
7 | |||
5 | * Rearrange order of 'Internal' materials. | 8 | * Rearrange order of 'Internal' materials. |
6 | 9 | ||
7 | 10 | ||
diff --git a/pipes-text.cabal b/pipes-text.cabal index 0807278..cb828a7 100644 --- a/pipes-text.cabal +++ b/pipes-text.cabal | |||
@@ -1,13 +1,17 @@ | |||
1 | name: pipes-text | 1 | name: pipes-text |
2 | version: 0.0.0.1 | 2 | version: 0.0.0.2 |
3 | synopsis: Text pipes. | 3 | synopsis: Text pipes. |
4 | description: Many of the pipes and other operations defined here mirror those in | 4 | description: Many of the pipes and other operations defined here mirror those in |
5 | the `pipes-bytestring` library. Folds like `length` and grouping | 5 | the `pipes-bytestring` library. Folds like `length` and grouping |
6 | operations like `lines` simply adjust for the differences between | 6 | operations like `lines` simply adjust for the differences between |
7 | `ByteString` and `Text` and `Word8` and `Char`. The distinctive feature | 7 | `ByteString` and `Text` and `Word8` and `Char`. It is hoped that this |
8 | of the library is the `Text/ByteString` encoding and decoding apparatus. | 8 | homogeneity will aid in learning the terms and programming style associated |
9 | with both of them. | ||
9 | . | 10 | . |
10 | To this core are added some simple functions akin to the `String` | 11 | The most distinctive addition of the library to that core is the |
12 | apparatus for encoding and decoding `Text` and `ByteString`. | ||
13 | . | ||
14 | Also defined are some simple functions akin to the `String` | ||
11 | operations in `Pipes.Prelude`, and others like the utilities in `Data.Text`. | 15 | operations in `Pipes.Prelude`, and others like the utilities in `Data.Text`. |
12 | . | 16 | . |
13 | All of the `IO` operations defined here - e.g `readFile`, `stdout` etc. | 17 | All of the `IO` operations defined here - e.g `readFile`, `stdout` etc. |