xdl-dataframe 0.1.1

DataFrame module for XDL - pandas/Spark-style data manipulation with support for CSV, TSV, Parquet, Avro
Documentation
[package]
name = "xdl-dataframe"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
description = "DataFrame module for XDL - pandas/Spark-style data manipulation with support for CSV, TSV, Parquet, Avro"
homepage.workspace = true
repository.workspace = true
documentation.workspace = true

[dependencies]
# Core XDL dependencies
xdl-core = { version = "0.1.1", path = "../xdl-core" }
xdl-database = { version = "0.1.1", path = "../xdl-database", optional = true }

# Error handling
thiserror.workspace = true
anyhow.workspace = true

# Async runtime
tokio = { workspace = true, features = ["full"] }

# Serialization
serde = { workspace = true, features = ["derive"] }
serde_json = "1.0"

# CSV/TSV support
csv = "1.3"

# Parquet support
parquet = { version = "53", optional = true }
arrow = { version = "53", optional = true }

# Avro support
apache-avro = { version = "0.17", optional = true }

# Data manipulation
indexmap = "2.0"
ndarray = { workspace = true }

# Statistics and math
num-traits = "0.2"

[features]
default = ["csv-support", "database-integration"]

# Individual format support
csv-support = []
parquet-support = ["parquet", "arrow"]
avro-support = ["apache-avro"]
database-integration = ["xdl-database"]

# Enable all formats
all = [
    "csv-support",
    "parquet-support",
    "avro-support",
    "database-integration"
]

[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.8"
rand = "0.8"

[[example]]
name = "dataframe_demo"
path = "examples/dataframe_demo.rs"

[[example]]
name = "comprehensive_demo"
path = "examples/comprehensive_demo.rs"