dvpl-engine 0.1.3

dvpl-converter encodes and decodes DVPL-compressed World of Tanks Blitz assets with LZ4 and LZ4-HC support
Documentation
[package]
name = "dvpl-engine"
version = "0.1.3"
edition = "2024"
rust-version = "1.92"
authors = ["MihaiStreames"]
description = "dvpl-converter encodes and decodes DVPL-compressed World of Tanks Blitz assets with LZ4 and LZ4-HC support"
documentation = "https://docs.rs/dvpl-engine"
homepage = "https://github.com/MihaiStreames/dvpl-converter"
repository = "https://github.com/MihaiStreames/dvpl-converter"
readme = "README.md"
license = "MIT"
keywords = ["dvpl", "wotb", "lz4", "compression"]
categories = ["compression", "encoding", "game-development"]
exclude = [".venv/", ".mypy_cache/", ".ruff_cache/"]

[package.metadata.docs.rs]
features = []
no-default-features = true

[lib]
name = "dvpl_engine"
crate-type = ["lib"]

[features]
default = []
python = ["pyo3"]

[dependencies]
crc32fast = "1.5.0"
lz4 = "1.28.1"
pyo3 = { version = "0.28.3", features = ["extension-module"], optional = true }
thiserror = "2.0.18"

[lints.rust]
unsafe_code = "forbid"

[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"