packages feed

siphon-0.8.2.1: siphon.cabal

cabal-version:   3.0
name:            siphon
version:         0.8.2.1
synopsis:        Encode and decode CSV files
description:     Encode and decode CSV files.
homepage:        https://github.com/byteverse/siphon
bug-reports:     https://github.com/byteverse/siphon/issues
license:         BSD-3-Clause
license-file:    LICENSE
author:          Andrew Martin
maintainer:      amartin@layer3com.com
copyright:       2016 Andrew Martin
category:        web
build-type:      Simple
extra-doc-files:
  CHANGELOG.md
  README.md

tested-with:     GHC ==9.4.8 || ==9.6.3 || ==9.8.1

common build-settings
  default-language: Haskell2010
  ghc-options:      -Wall -Wunused-packages
  build-depends:    base >=4.8 && <5

library
  import:          build-settings
  ghc-options:     -O2
  hs-source-dirs:  src
  exposed-modules:
    Siphon
    Siphon.Types

  build-depends:
    , attoparsec
    , bytestring
    , colonnade     >=1.2
    , streaming     >=0.1.4
    , text          >=1.0
    , transformers  >=0.4.2
    , vector

test-suite test
  import:         build-settings
  type:           exitcode-stdio-1.0
  hs-source-dirs: test
  main-is:        Test.hs
  build-depends:
    , base
    , bytestring
    , colonnade
    , HUnit
    , profunctors
    , QuickCheck
    , siphon
    , streaming
    , test-framework
    , test-framework-hunit
    , test-framework-quickcheck2
    , text
    , vector

source-repository head
  type:     git
  location: git://github.com/byteverse/siphon.git