Frames-dsv-0.1.2: Frames-dsv.cabal
name: Frames-dsv
version: 0.1.2
synopsis: Alternative CSV parser for the Frames package
description: Alternative CSV parser for the Frames package. In cases
where the built-in Frames CSV parser does not work
(e.g. when dealing with data files that include newlines
embedded in data values), the parsers exposed here may
help.
homepage: https://github.com/acowley/Frames-dsv#readme
license: BSD3
license-file: LICENSE
author: Anthony Cowley
maintainer: acowley@gmail.com
copyright: 2018 Anthony Cowley
category: Data
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
test/data/multiline.csv
cabal-version: >=1.10
tested-with: GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1
library
hs-source-dirs: src
exposed-modules: Frames.Dsv
build-depends: base >= 4.7 && < 5
, bytestring
, Frames >= 0.6
, vinyl
, hw-dsv >= 0.3 && < 0.5
, pipes >= 4.1 && < 5
, text
, vector
, template-haskell
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/acowley/Frames-dsv
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base, Frames, Frames-dsv, pipes, hspec
default-language: Haskell2010