[package]
edition = "2024"
rust-version = "1.88"
name = "easyofd-core"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types, traits, and models for easyofd-rust"
readme = false
license = "Apache-2.0"
repository = "https://github.com/easy-4-rust/easyofd-rust"
[lib]
name = "easyofd_core"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4.45"
features = [
"clock",
"std",
]
default-features = false
[dependencies.quick-xml]
version = "0.42.0"
[dependencies.thiserror]
version = "2.0.18"
[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"