]> git.immae.eu Git - github/fretlink/text-pipes.git/blame - pipes-text.cabal
brilliant insight into haddock markup
[github/fretlink/text-pipes.git] / pipes-text.cabal
CommitLineData
7faef8bc 1name: pipes-text
82fe661b 2version: 0.0.0.10
91727d11 3synopsis: Text pipes.
02f89dfe 4description: * This package will be in a draft, or testing, phase until version 0.0.1. Please report any installation difficulties, or any wisdom about the api, on the github page or the <https://groups.google.com/forum/#!forum/haskell-pipes pipes list>
1a83ae4e 5 .
4989a357 6 This organization of the package follows the rule
7 .
8 * @pipes-text : pipes-bytestring :: text : bytestring@
11b2cbe9 9 .
4989a357 10 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 11 .
4989a357 12 Note that the module @Pipes.Text.IO@ is present as a convenience (as is @Data.Text.IO@). Official pipes IO would use @Pipes.ByteString@ and the decoding functions present here, based on the new Michael Snoyman's new @text-stream-decoding@ package. In particular, the @Pipes.Text.IO@ functions use Text exceptions.
11b2cbe9 13 .
4989a357 14 @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 15
11b2cbe9 16homepage: https://github.com/michaelt/text-pipes
17bug-reports: https://github.com/michaelt/text-pipes/issues
91727d11 18license: BSD3
19license-file: LICENSE
409759e8 20author: Michael Thompson
91727d11 21maintainer: what_is_it_to_do_anything@yahoo.com
409759e8 22category: Text, Pipes
91727d11 23build-type: Simple
91727d11 24cabal-version: >=1.10
11777d08 25
ea05597c 26extra-source-files: README.md changelog
11777d08 27source-repository head
28 type: git
29 location: https://github.com/michaelt/text-pipes
30
bbdfd305 31flag noio
32 default: False
33 Description: Use a version of text earlier than 0.11.3
91727d11 34
35library
bbdfd305 36 exposed-modules: Pipes.Text, Pipes.Text.Encoding
37 build-depends: base >= 4 && < 5 ,
38 bytestring >= 0.9 ,
8d71c649 39 text >=0.11.2 && < 1.2,
bbdfd305 40 text-stream-decode >= 0.1 && < 0.2,
41 profunctors >= 3.1.1 && < 4.1,
42 pipes >=4.0 && < 4.2,
43 pipes-group >= 1.0.0 && < 1.1,
44 pipes-parse >=2.0 && < 3.1,
91727d11 45 pipes-safe,
bbdfd305 46 pipes-bytestring >= 1.0 && < 2.1,
47 transformers >= 0.2.0.0 && < 0.4
48 other-extensions: RankNTypes
3694350a 49 default-language: Haskell2010
bbdfd305 50 ghc-options: -O2
51
52 if !flag(noio)
53 exposed-modules: Pipes.Text.IO
54 build-depends: text >=0.11.3 && < 1.2
55