[package]
edition = "2024"
rust-version = "1.88"
name = "easyofd-reader"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OFD file reader for easyofd-rust"
readme = false
license = "Apache-2.0"
repository = "https://github.com/easy-4-rust/easyofd-rust"
[lib]
name = "easyofd_reader"
path = "src/lib.rs"
[[bench]]
name = "read_bench"
path = "benches/read_bench.rs"
harness = false
[dependencies.chrono]
version = "0.4.45"
features = [
"clock",
"std",
]
default-features = false
[dependencies.easyofd-core]
version = "0.1.3"
[dependencies.easyofd-package]
version = "0.1.3"
[dependencies.quick-xml]
version = "0.42.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.zip]
version = "8.6.0"
features = ["deflate"]
default-features = false
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.easyofd-writer]
version = "0.1.0"
[lints.clippy]
collapsible_if = "allow"
doc_markdown = "allow"
format_collect = "allow"
format_push_string = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
manual_string_new = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
needless_range_loop = "allow"
redundant_closure_for_method_calls = "allow"
semicolon_if_nothing_returned = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unnecessary_map_or = "allow"
unnecessary_wraps = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"