]> git.immae.eu Git - github/fretlink/text-pipes.git/blob - pipes-text.cabal
moved internals
[github/fretlink/text-pipes.git] / pipes-text.cabal
1 name: pipes-text
2 version: 0.1.0.0
3 synopsis: Text pipes.
4 description: 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
18 homepage: github.com/michaelt/text-pipes
19 license: BSD3
20 license-file: LICENSE
21 author: Michael Thompson
22 maintainer: what_is_it_to_do_anything@yahoo.com
23 category: Text, Pipes
24 build-type: Simple
25 cabal-version: >=1.10
26 extra-source-files: README.md
27 include/*.h
28
29 library
30 c-sources: cbits/cbits.c
31 include-dirs: include
32 exposed-modules: Pipes.Text, Pipes.Text.Internal.Decoding, Pipes.Text.Internal.Codec
33 -- other-modules:
34 other-extensions: RankNTypes
35 build-depends: base >= 4 && < 5 ,
36 bytestring >=0.10 && < 0.11,
37 text >=0.11 && < 0.12,
38 profunctors >= 3.1.1 && < 4.1 ,
39 pipes >=4.0 && < 4.2,
40 pipes-group >= 1.0.0 && < 1.1 ,
41 pipes-parse >=2.0 && < 3.1,
42 pipes-safe,
43 pipes-bytestring >= 1.0 && < 2.1,
44 transformers >= 0.2.0.0 && < 0.4
45 -- hs-source-dirs:
46 default-language: Haskell2010
47 ghc-options: -O2