]> git.immae.eu Git - github/fretlink/text-pipes.git/blame - pipes-text.cabal
version bump
[github/fretlink/text-pipes.git] / pipes-text.cabal
CommitLineData
7faef8bc 1name: pipes-text
69fd54e3 2version: 0.0.1.0
91727d11 3synopsis: Text pipes.
69fd54e3 4description: * This organization of the package follows the rule
4989a357 5 .
6 * @pipes-text : pipes-bytestring :: text : bytestring@
11b2cbe9 7 .
4989a357 8 Familiarity with the other three packages should give one an idea what to expect where. The package has three modules, @Pipes.Text@ , @Pipes.Text.Encoding@ and @Pipes.Text.IO@; the division has more or less the significance it has in the @text@ library.
02bc50d5 9 .
89cf7024 10 Note that the module @Pipes.Text.IO@ is present as a convenience (as is @Data.Text.IO@). Official pipes IO would use @Pipes.ByteString@ together with the bytestring decoding functions in @Pipes.Text.Encoding@. In particular, the @Pipes.Text.IO@ functions use Text exceptions.
11b2cbe9 11 .
4989a357 12 @Pipes.Text.IO@ uses version 0.11.3 or later of the @text@ library. It thus works with the version of @text@ that came with the 2013 Haskell Platform. To use an older @text@, install with the flag @-fnoio@
409759e8 13
11b2cbe9 14homepage: https://github.com/michaelt/text-pipes
15bug-reports: https://github.com/michaelt/text-pipes/issues
91727d11 16license: BSD3
17license-file: LICENSE
409759e8 18author: Michael Thompson
91727d11 19maintainer: what_is_it_to_do_anything@yahoo.com
409759e8 20category: Text, Pipes
91727d11 21build-type: Simple
91727d11 22cabal-version: >=1.10
11777d08 23
ea05597c 24extra-source-files: README.md changelog
11777d08 25source-repository head
26 type: git
27 location: https://github.com/michaelt/text-pipes
28
bbdfd305 29flag noio
30 default: False
31 Description: Use a version of text earlier than 0.11.3
91727d11 32
33library
bbdfd305 34 exposed-modules: Pipes.Text, Pipes.Text.Encoding
e8336ba6 35 build-depends: base >= 4 && < 5 ,
eae50557 36 bytestring >= 0.9.2.1 && < 0.11,
6f9d4cfe 37 text >= 0.11.2 && < 1.3 ,
eae50557 38 streaming-commons >= 0.1 && < 0.2 ,
eae50557 39 pipes >= 4.0 && < 4.2 ,
40 pipes-group >= 1.0.0 && < 1.1 ,
41 pipes-parse >= 3.0.0 && < 3.1 ,
42 pipes-safe >= 2.1 && < 2.3 ,
57454c33 43 pipes-bytestring >= 1.0 && < 2.2 ,
eae50557 44 transformers >= 0.2.0.0 && < 0.5
45
bbdfd305 46 other-extensions: RankNTypes
3694350a 47 default-language: Haskell2010
bbdfd305 48 ghc-options: -O2
49
50 if !flag(noio)
6777c14f 51 exposed-modules: Pipes.Text.IO, Pipes.Text.Tutorial
6f9d4cfe 52 build-depends: text >=0.11.3 && < 1.3