easyofd-reader 0.1.3

OFD file reader for easyofd-rust
Documentation
[package]
name = "easyofd-reader"
description = "OFD file reader for easyofd-rust"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true

[dependencies]
easyofd-core = { workspace = true }
easyofd-package = { workspace = true }
thiserror = { workspace = true }
chrono = { workspace = true }
zip = { workspace = true }
quick-xml = { workspace = true }

[lints]
workspace = true

[dev-dependencies]
# 钉到 crates.io 已存在的 0.1.0:reader(dev)↔writer(normal) 循环依赖使
# cargo publish 无法让两者都要求 ^0.1.1(发布 reader 需 writer 0.1.1 存在,
# 发布 writer 需 reader 0.1.1 存在)。dev-dep 不进发布包,本地构建仍走 path 源码(0.1.1 满足 ^0.1.0)。
easyofd-writer = { path = "../easyofd-writer", version = "0.1.0" }
criterion = { workspace = true }

[[bench]]
name = "read_bench"
harness = false