xlsxparser 0.10.2

A lightweight, high-performance .xlsx (OOXML) parser library
Documentation
# cargo-deny configuration. See https://embarkstudios.github.io/cargo-deny/
#
# The [licenses] allow-list is extended as needed whenever a new dependency
# is added under Issue #15 (e.g. "Zlib" for zip's zlib-rs).

[advisories]
ignore = []

[licenses]
# The crate's own license is undecided yet (README.md "License: TBD") and it
# is unpublished (Cargo.toml `publish = false`), so don't fail the license
# check on the workspace crate itself — this section only governs
# third-party dependency licenses.
private = { ignore = true }

allow = [
  "MIT",
  "Apache-2.0",
  "Apache-2.0 WITH LLVM-exception",
  "BSD-2-Clause",
  "BSD-3-Clause",
  "Unicode-3.0",
  "Zlib",
]

[bans]
multiple-versions = "warn"
wildcards = "deny"

[sources]
unknown-registry = "deny"
unknown-git = "deny"