packages feed

box-csv-0.2.0: box-csv.cabal

cabal-version: 2.4
name:          box-csv
version:       0.2.0
synopsis:      CSV parsing in a box.
description:   CSV parsing using attoparsec and the box library.
category:      project
author:        Tony Day
maintainer:    tonyday567@gmail.com
copyright:     Tony Day (c) 2018-2022
license:       BSD-3-Clause
homepage:      https://github.com/tonyday567/box-csv#readme
bug-reports:   https://github.com/tonyday567/box-csv/issues
build-type:    Simple
tested-with:   GHC ==8.8.4 || ==8.10.7 || ==9.2.1

source-repository head
  type:     git
  location: https://github.com/tonyday567/box-csv

library
  hs-source-dirs:     src
  default-extensions:
  ghc-options:
    -Wall -Wcompat -Wincomplete-record-updates
    -Wincomplete-uni-patterns -Wredundant-constraints -fwrite-ide-info
    -hiedir=.hie -Wunused-packages

  build-depends:
    , attoparsec  >=0.13 && <0.16
    , base        >=4.7  && <5
    , box         ^>=0.8
    , text        ^>=1.2
    , time        ^>=1.9

  exposed-modules:    Box.Csv
  other-modules:
  default-language:   Haskell2010