[package]
edition = "2021"
name = "xlsxparser"
version = "0.10.1"
build = false
exclude = ["tests/fixtures/**/*.xlsx"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, high-performance .xlsx (OOXML) parser library"
readme = "README.md"
license = "MIT"
repository = "https://github.com/MinamiyamaKotaro/xlsxparser"
[lib]
name = "xlsxparser"
path = "src/lib.rs"
[[test]]
name = "complex"
path = "tests/complex.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "load"
path = "tests/load.rs"
[[test]]
name = "normal"
path = "tests/normal.rs"
[[test]]
name = "real_error"
path = "tests/real_error.rs"
[[test]]
name = "real_fixtures"
path = "tests/real_fixtures.rs"
[[test]]
name = "real_load"
path = "tests/real_load.rs"
[[test]]
name = "security"
path = "tests/security.rs"
[dependencies.quick-xml]
version = "0.41.0"
[dependencies.serde]
version = "1.0.229"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.thiserror]
version = "2"
[dependencies.zip]
version = "8"
features = ["deflate"]
default-features = false