packages feed

box-csv-0.0.1: box-csv.cabal

cabal-version: 2.4
name: box-csv
version: 0.0.1
synopsis: See readme.md
description: See readme.md for description.
category: project
author: Tony Day
maintainer: tonyday567@gmail.com
copyright: Tony Day (c) AfterTimes
license: BSD-3-Clause
homepage: https://github.com/tonyday567/box-csv#readme
bug-reports: https://github.com/tonyday567/box-csv/issues
build-type: Simple
source-repository head
  type: git
  location: https://github.com/tonyday567/box-csv

library
  hs-source-dirs:
    src
  default-extensions:
    NoImplicitPrelude
    NegativeLiterals
    OverloadedStrings
    UnicodeSyntax
  ghc-options:
    -Wall
    -Wcompat
    -Wincomplete-record-updates
    -Wincomplete-uni-patterns
    -Wredundant-constraints
  build-depends:
    base >=4.7 && <5,
    attoparsec >= 0.13,
    box >= 0.4 && < 0.6,
    foldl >= 1.4,
    generic-lens,
    lens >= 4.19,
    text >= 1.2,
    time >= 1.9,
    scientific >= 0.3,
    numhask >= 0.6
  exposed-modules:
    Box.Csv
  other-modules:
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: test.hs
  hs-source-dirs:
      test
  default-extensions:
    NoImplicitPrelude
    NegativeLiterals
    OverloadedStrings
    UnicodeSyntax
  ghc-options:
    -Wall
    -Wcompat
    -Wincomplete-record-updates
    -Wincomplete-uni-patterns
    -Wredundant-constraints
  build-depends:
    base >=4.7 && <5,
    doctest >= 0.16,
    numhask >= 0.6
  default-language: Haskell2010