]> git.immae.eu Git - github/fretlink/text-pipes.git/blame - pipes-text.cabal
moved internals
[github/fretlink/text-pipes.git] / pipes-text.cabal
CommitLineData
7faef8bc 1name: pipes-text
91727d11 2version: 0.1.0.0
3synopsis: Text pipes.
409759e8 4description: Most of the pipes and other operations defined in `pipes-text`
5 closely mirrors the `pipes-bytestring` library, simply adjusting for
6 the difference between strict `ByteString` and strict `Text`, and between
7 `Word8` and `Char`. To this core are added some simple functions
8 some akin to the `String` operations in `Pipes.Prelude`, some like the
9 utilities in `Data.Text`.
10
11 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
13 find the system encoding and use the exceptions defined in the `text`
14 library. Proper `IO` in the sense of this library will employ
15 `pipes-bytestring` in conjuntion with 'pure' operations like
16 `decodeUtf8` and `encodeUtf8` that are defined here.
17
91727d11 18homepage: github.com/michaelt/text-pipes
19license: BSD3
20license-file: LICENSE
409759e8 21author: Michael Thompson
91727d11 22maintainer: what_is_it_to_do_anything@yahoo.com
409759e8 23category: Text, Pipes
91727d11 24build-type: Simple
91727d11 25cabal-version: >=1.10
409759e8 26extra-source-files: README.md
27 include/*.h
91727d11 28
29library
8c482809 30 c-sources: cbits/cbits.c
31 include-dirs: include
409759e8 32 exposed-modules: Pipes.Text, Pipes.Text.Internal.Decoding, Pipes.Text.Internal.Codec
91727d11 33 -- other-modules:
34 other-extensions: RankNTypes
35 build-depends: base >= 4 && < 5 ,
1677dc12 36 bytestring >=0.10 && < 0.11,
37 text >=0.11 && < 0.12,
38 profunctors >= 3.1.1 && < 4.1 ,
91727d11 39 pipes >=4.0 && < 4.2,
7ed76745 40 pipes-group >= 1.0.0 && < 1.1 ,
64e03122 41 pipes-parse >=2.0 && < 3.1,
91727d11 42 pipes-safe,
64e03122 43 pipes-bytestring >= 1.0 && < 2.1,
1677dc12 44 transformers >= 0.2.0.0 && < 0.4
91727d11 45 -- hs-source-dirs:
3694350a 46 default-language: Haskell2010
47 ghc-options: -O2