[package]
edition = "2024"
rust-version = "1.85"
name = "excelx"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe XLSX read/write helpers for Rust structs."
homepage = "https://github.com/prongbang/excelx-rs"
documentation = "https://docs.rs/excelx"
readme = "README.md"
keywords = [
"excel",
"xlsx",
"spreadsheet",
"calamine",
]
categories = [
"encoding",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/prongbang/excelx-rs"
[lib]
name = "excelx"
path = "src/lib.rs"
[[test]]
name = "compatibility_workbooks"
path = "tests/compatibility_workbooks.rs"
[[test]]
name = "defaults_multi_sheet"
path = "tests/defaults_multi_sheet.rs"
[[test]]
name = "read_write"
path = "tests/read_write.rs"
[[test]]
name = "sheet_reading"
path = "tests/sheet_reading.rs"
[dependencies.calamine]
version = "0.34"
[dependencies.rust_xlsxwriter]
version = "0.94"
[dependencies.thiserror]
version = "2"