]>
Commit | Line | Data |
---|---|---|
1 | name: pipes-text | |
2 | version: 0.0.0.7 | |
3 | synopsis: Text pipes. | |
4 | description: Many of the pipes and other operations defined here mirror those in | |
5 | the `pipes-bytestring` library. Folds like `length` and grouping | |
6 | operations like `lines` simply adjust for the differences between | |
7 | `ByteString` and `Text` and `Word8` and `Char`. It is hoped that this | |
8 | homogeneity will aid in learning the terms and programming style associated | |
9 | with both of them. | |
10 | . | |
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` | |
15 | operations in `Pipes.Prelude`, and others like the utilities in `Data.Text`. | |
16 | . | |
17 | All of the `IO` operations defined here - e.g `readFile`, `stdout` etc. | |
18 | - are conveniences akin to those in `Data.Text.IO` which e.g. try to | |
19 | find the system encoding and use the exceptions defined in the `text` | |
20 | library. Proper `IO` in the sense of this library will employ | |
21 | `pipes-bytestring` in conjuntion with 'pure' operations like | |
22 | `decodeUtf8` and `encodeUtf8` that are defined here. | |
23 | ||
24 | homepage: https://github.com/michaelt/text-pipes | |
25 | bug-reports: https://github.com/michaelt/text-pipes/issues | |
26 | license: BSD3 | |
27 | license-file: LICENSE | |
28 | author: Michael Thompson | |
29 | maintainer: what_is_it_to_do_anything@yahoo.com | |
30 | category: Text, Pipes | |
31 | build-type: Simple | |
32 | cabal-version: >=1.10 | |
33 | ||
34 | extra-source-files: README.md include/*.h changelog | |
35 | source-repository head | |
36 | type: git | |
37 | location: https://github.com/michaelt/text-pipes | |
38 | ||
39 | flag noio | |
40 | default: False | |
41 | Description: Use a version of text earlier than 0.11.3 | |
42 | ||
43 | library | |
44 | exposed-modules: Pipes.Text, Pipes.Text.Encoding | |
45 | build-depends: base >= 4 && < 5 , | |
46 | bytestring >= 0.9 , | |
47 | text >=0.11.3 && < 1.2, | |
48 | text-stream-decode >= 0.1 && < 0.2, | |
49 | profunctors >= 3.1.1 && < 4.1, | |
50 | pipes >=4.0 && < 4.2, | |
51 | pipes-group >= 1.0.0 && < 1.1, | |
52 | pipes-parse >=2.0 && < 3.1, | |
53 | pipes-safe, | |
54 | pipes-bytestring >= 1.0 && < 2.1, | |
55 | transformers >= 0.2.0.0 && < 0.4 | |
56 | other-extensions: RankNTypes | |
57 | default-language: Haskell2010 | |
58 | ghc-options: -O2 | |
59 | ||
60 | if !flag(noio) | |
61 | exposed-modules: Pipes.Text.IO | |
62 | build-depends: text >=0.11.3 && < 1.2 | |
63 |