diff options
-rw-r--r-- | .DS_Store | bin | 6148 -> 6148 bytes | |||
-rw-r--r-- | pipes-text.cabal | 25 |
2 files changed, 15 insertions, 10 deletions
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 @@ | |||
1 | name: pipes-text | 1 | name: pipes-text |
2 | version: 0.1.0.0 | 2 | version: 0.0.1.0 |
3 | synopsis: Text pipes. | 3 | synopsis: Text pipes. |
4 | description: Most of the pipes and other operations defined in `pipes-text` | 4 | description: 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 | ||
18 | homepage: github.com/michaelt/text-pipes | 20 | homepage: https://github.com/michaelt/text-pipes |
21 | bug-reports: https://github.com/michaelt/text-pipes/issues | ||
22 | |||
19 | license: BSD3 | 23 | license: BSD3 |
20 | license-file: LICENSE | 24 | license-file: LICENSE |
21 | author: Michael Thompson | 25 | author: Michael Thompson |
22 | maintainer: what_is_it_to_do_anything@yahoo.com | 26 | maintainer: what_is_it_to_do_anything@yahoo.com |
23 | category: Text, Pipes | 27 | category: Text, Pipes |
28 | |||
24 | build-type: Simple | 29 | build-type: Simple |
25 | cabal-version: >=1.10 | 30 | cabal-version: >=1.10 |
26 | extra-source-files: README.md | 31 | extra-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 , |