aboutsummaryrefslogtreecommitdiffhomepage
path: root/pipes-text.cabal
blob: 44bc5512b57c6c79e1f0eadbf3efabdef00ee9a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name:                pipes-text
version:             0.1.0.0
synopsis:            Text pipes.
description:         Text pipes.
homepage:            github.com/michaelt/text-pipes
license:             BSD3
license-file:        LICENSE
author:              michaelt
maintainer:          what_is_it_to_do_anything@yahoo.com
category:            Text
build-type:          Simple
cabal-version:       >=1.10

library
  c-sources:    cbits/cbits.c
  include-dirs: include
  exposed-modules:     Pipes.Text, Pipes.Text.Internal, Pipes.Text.Codec
  -- other-modules:       
  other-extensions:    RankNTypes
  build-depends:       base         >= 4       && < 5  ,
                       bytestring >=0.10       && < 0.11,
                       text >=0.11             && < 0.12,
                       profunctors  >= 3.1.1   && < 4.1 ,
                       pipes >=4.0             && < 4.2,
                       pipes-group  >= 1.0.0   && < 1.1 ,
                       pipes-parse >=2.0       && < 3.1,
                       pipes-safe, 
                       pipes-bytestring >= 1.0 && < 2.1,
                       transformers >= 0.2.0.0 && < 0.4
  -- hs-source-dirs:      
  default-language:    Haskell2010
  ghc-options: -O2