]> git.immae.eu Git - github/fretlink/text-pipes.git/blob - pipes-text.cabal
Merge pull request #3 from Gabriel439/nocpp
[github/fretlink/text-pipes.git] / pipes-text.cabal
1 name: pipes-text
2 version: 0.0.0.5
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
40 library
41 c-sources: cbits/cbits.c
42 include-dirs: include
43 exposed-modules: Pipes.Text, Pipes.Text.Internal
44 other-modules: Pipes.Text.Internal.Decoding, Pipes.Text.Internal.Codec
45 other-extensions: RankNTypes
46 build-depends: base >= 4 && < 5 ,
47 bytestring >=0.10 && < 0.11,
48 text >=0.11 && < 1.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 -- hs-source-dirs:
57 default-language: Haskell2010
58 ghc-options: -O2