dataframe-lazy-1.1.0.2: dataframe-lazy.cabal
cabal-version: 2.4
name: dataframe-lazy
version: 1.1.0.2
synopsis: Lazy query engine for the dataframe ecosystem.
description:
The lazy/streaming query engine: relational-algebra plans, optimizer,
pull-based executor, and column-oriented spill format. Includes the
typed lazy wrapper. Currently depends on @dataframe-csv@ and
@dataframe-parquet@ since the executor calls those readers directly.
bug-reports: https://github.com/mchav/dataframe/issues
license: MIT
license-file: LICENSE
author: Michael Chavinda
maintainer: mschavinda@gmail.com
copyright: (c) 2024-2026 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.Lazy
DataFrame.Lazy.IO.Binary
DataFrame.Lazy.IO.CSV
DataFrame.Lazy.Internal.DataFrame
DataFrame.Lazy.Internal.Executor
DataFrame.Lazy.Internal.LogicalPlan
DataFrame.Lazy.Internal.Optimizer
DataFrame.Lazy.Internal.PhysicalPlan
DataFrame.Typed.Lazy
build-depends: base >= 4 && < 5,
async >= 2.2 && < 3,
attoparsec >= 0.12 && < 0.15,
bytestring >= 0.11 && < 0.13,
containers >= 0.6.7 && < 0.9,
dataframe-core ^>= 1.1,
dataframe-csv ^>= 1.0.2,
dataframe-operations ^>= 1.1.1,
dataframe-parquet ^>= 1.1,
dataframe-parsing ^>= 1.0.2,
directory >= 1.3.0.0 && < 2,
filepath >= 1.4 && < 2,
Glob >= 0.10 && < 1,
stm >= 2.5 && < 3,
temporary >= 1.3 && < 2,
text >= 2.1 && < 3,
vector ^>= 0.13
hs-source-dirs: src
default-language: Haskell2010