[package]
name = "polars_excel_writer"
description = "A Polars extension to serialize dataframes to Excel xlsx files"
authors = ["John McNamara <jmcnamara@cpan.org>"]
repository = "https://github.com/jmcnamara/polars_excel_writer"
keywords = ["polars", "excel", "xlsx"]
readme = "README.md"
license = "MIT OR Apache-2.0"
version = "0.10.0"
edition = "2021"
[dependencies]
chrono = "0.4.38"
polars = {version = "0.44", features = ["lazy"]}
rust_xlsxwriter = { version = "0.80.0", features = ["chrono", "polars"] }
[dev-dependencies]
regex = "1.10.5"
pretty_assertions = "1.4.0"
zip = {version = "2.1.3", default-features = false, features = ["deflate"]}
[features]
default = []
zlib = ["zip/deflate-zlib"]
[package.metadata.commands]
spellcheck = {cmd = [
"for f in src/*.rs; do aspell --lang=en_US --check $f; done",
"for f in examples/*.rs; do aspell --lang=en_US --check $f; done",
"aspell --lang=en_US --check README.md"
]}