packages feed

pipes-csv-1.0.0: pipes-csv.cabal

name:                pipes-csv
version:             1.0.0
synopsis: Fast, streaming csv parser
license:             MIT
license-file:        LICENSE
author:              William Casarin
maintainer:          will@casarin.me
category:            Pipes, CSV
build-type:          Simple
cabal-version:       >=1.10
Description:
  `pipes-csv` is a streaming csv parser built on top of `cassava` and `pipes`

source-repository head
  type: git
  location: https://github.com/jb55/pipes-csv

library
  ghc-options: -Wall -O2
  exposed-modules:   Pipes.Csv
  build-depends: base       >= 4.6  && < 4.7
               , text       >= 0.11 && < 0.12
               , bytestring >= 0.10 && < 0.11
               , cassava    >= 0.2  && < 0.3
               , pipes      >= 4    && < 5
  default-language:    Haskell2010