packages feed

dataframe-csv-th-1.0.1.0: dataframe-csv-th.cabal

cabal-version:      2.4
name:               dataframe-csv-th
version:            1.0.1.0

synopsis:           CSV-file-based Template Haskell splices for the dataframe ecosystem.
description:
    Splices that read CSV files at compile time and emit per-column
    bindings and typed schema synonyms. Record-based splices live in
    @dataframe-th@.

bug-reports:        https://github.com/mchav/dataframe/issues
license:            MIT
license-file:       LICENSE
author:             Michael Chavinda
maintainer:         mschavinda@gmail.com
copyright:          (c) 2024-2025 Michael Chavinda
category:           Data
tested-with:        GHC ==9.4.8 || ==9.6.7 || ==9.8.4 || ==9.10.3 || ==9.12.2

common warnings
    ghc-options:
        -Wincomplete-patterns
        -Wincomplete-uni-patterns
        -Wunused-imports
        -Wunused-local-binds
        -Wunused-packages

library
    import:             warnings
    exposed-modules:
                        DataFrame.TH.CSV
                        DataFrame.Typed.TH.CSV
    build-depends:      base >= 4 && < 5,
                        dataframe-csv ^>= 1.0,
                        dataframe-th ^>= 1.0,
                        template-haskell >= 2.0 && < 3
    hs-source-dirs:     src
    default-language:   Haskell2010