packages feed

delimited-text-0.1.2: delimited-text.cabal

name:               delimited-text
version:            0.1.2
synopsis:           Parse character delimited textual data
description:        Parse character delimited textual data
license:            BSD3
license-file:       LICENSE
category:           Data
copyright:          Copyright (c) Stefan Kersten 2008
author:             Stefan Kersten
maintainer:         Stefan Kersten
stability:          provisional
homepage:           http://code.haskell.org/~StefanKersten/code/delimited-text
tested-with:        GHC == 6.10.1
build-type:         Simple
cabal-version:      >= 1.6

extra-source-files: examples/data.dlm
                    examples/data.csv
                    examples/test.hs

library
  exposed-modules:  Text.Delimited
  other-modules:    Text.Delimited.ByteString.Lazy
                    Text.Delimited.Put
                    Text.Delimited.Types
                    
  build-depends:    base >= 3 && < 10,
                    binary >= 0.4,
                    bytestring,
                    attoparsec == 0.5.*,
                    bytestring-show >= 0.2

  ghc-options:      -O2 -funbox-strict-fields