aboutsummaryrefslogtreecommitdiffhomepage
path: root/text-pipes.cabal
blob: 1d73a7b2c095a035e76a71a7ad33da6f68fc77e4 (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
33
-- Initial text-pipes.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                text-pipes
version:             0.1.0.0
synopsis:            Text pipes.
-- description:         
homepage:            github.com/michaelt/text-pipes
license:             BSD3
license-file:        LICENSE
author:              michaelt
maintainer:          what_is_it_to_do_anything@yahoo.com
-- copyright:           
category:            Text
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Data.Text.Pipes
  -- other-modules:       
  other-extensions:    RankNTypes
  build-depends:       base         >= 4       && < 5  ,
                       transformers >= 0.2.0.0 && < 0.4,
                       pipes >=4.0             && < 4.2,
                       pipes-parse >=2.0       && < 2.1,
                       pipes-safe, 
                       pipes-bytestring >= 1.0 && < 1.1,
                       transformers >= 0.3     && < 0.4,
                       text >=0.11             && < 0.12,
                       bytestring >=0.10       && < 0.11
  -- hs-source-dirs:      
  default-language:    Haskell2010