[package]
name = "dataload"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
authors = ["Rojin rojin.woeser@gmail.com"]
description = "A flexible data loading library for CSV and Excel files with automatic delimiter detection"
license = "Apache-2.0"
repository = "https://github.com/OneThing98/dataload"
documentation = "https://docs.rs/dataload"
readme = "README.md"
keywords = ["csv", "excel", "dataframe", "polars", "data"]
categories = ["parsing", "data-structures"]
[features]
default = ["csv", "excel"]
csv = []
excel = ["dep:calamine"]
[dependencies]
polars = { version = "0.46", features = ["lazy"] }
calamine = { version = "0.29", optional = true }
thiserror = "2"
[dev-dependencies]
tempfile = "3"