[package]
edition = "2024"
rust-version = "1.85"
name = "miniexcel"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Experimental Rust XLSX reader and writer for MiniExcel"
homepage = "https://github.com/mini-software/MiniExcel-Rust"
documentation = "https://docs.rs/miniexcel"
readme = "README.md"
keywords = [
"excel",
"xlsx",
"spreadsheet",
"serde",
"streaming",
]
categories = ["parser-implementations"]
license = "Apache-2.0"
repository = "https://github.com/mini-software/MiniExcel-Rust"
resolver = "2"
[lib]
name = "miniexcel"
path = "src/lib.rs"
[[example]]
name = "analyze"
path = "examples/analyze.rs"
[[example]]
name = "rag_export"
path = "examples/rag_export.rs"
[[example]]
name = "read"
path = "examples/read.rs"
[[example]]
name = "write"
path = "examples/write.rs"
[[test]]
name = "analytics"
path = "tests/analytics.rs"
[[test]]
name = "parity_contract"
path = "tests/parity_contract.rs"
[[test]]
name = "rag_export"
path = "tests/rag_export.rs"
[[test]]
name = "read_dynamic"
path = "tests/read_dynamic.rs"
[[test]]
name = "read_structured"
path = "tests/read_structured.rs"
[[test]]
name = "read_typed"
path = "tests/read_typed.rs"
[[test]]
name = "write_roundtrip"
path = "tests/write_roundtrip.rs"
[dependencies.calamine]
version = "0.35.0"
features = ["chrono"]
[dependencies.chrono]
version = "0.4.42"
features = ["serde"]
[dependencies.indexmap]
version = "2.12.1"
features = ["serde"]
[dependencies.quick-xml]
version = "0.39.4"
[dependencies.rust_xlsxwriter]
version = "0.96.0"
features = [
"chrono",
"serde",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.sha2]
version = "0.10.9"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.zip]
version = "7.2.0"
features = ["deflate"]
default-features = false
[dev-dependencies.serde_json]
version = "1.0.145"
[dev-dependencies.tempfile]
version = "3.23.0"
[lints.rust]
unsafe_code = "forbid"