packages feed

comma-1.0.0: comma.cabal

name:                comma
version:             1.0.0
synopsis:            CSV Parser & Producer
description:         Comma is a simple CSV format parser and producer that
                     closely follows the RFC4810 document.
homepage:            https://github.com/lovasko/comma
license:             OtherLicense
license-file:        LICENSE
author:              Daniel Lovasko <daniel.lovasko@gmail.com>
maintainer:          Daniel Lovasko <daniel.lovasko@gmail.com>
copyright:           2017 Daniel Lovasko
category:            Text
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Text.Comma
  build-depends:       base >= 4.7 && < 5
                     , attoparsec
                     , text
  default-language:    Haskell2010

test-suite comma-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Prop.hs
  build-depends:       base >= 4.7 && < 5
                     , QuickCheck
                     , comma
                     , text
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/lovasko/comma