[package]
edition = "2024"
rust-version = "1.85.0"
name = "dvpl-engine"
version = "0.1.1"
authors = ["MihaiStreames"]
build = false
exclude = [
".venv/",
".mypy_cache/",
".ruff_cache/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DVPL file format engine for World of Tanks Blitz"
homepage = "https://github.com/MihaiStreames/dvpl-converter"
documentation = "https://docs.rs/dvpl-engine"
readme = "README.md"
keywords = [
"dvpl",
"wotb",
"lz4",
"compression",
]
categories = [
"compression",
"encoding",
"game-development",
]
license = "MIT"
repository = "https://github.com/MihaiStreames/dvpl-converter"
[package.metadata.docs.rs]
features = []
no-default-features = true
[features]
default = []
python = ["pyo3"]
[lib]
name = "dvpl_engine"
crate-type = ["lib"]
path = "src/lib.rs"
[dependencies.crc32fast]
version = "1.5.0"
[dependencies.lz4]
version = "1.28.1"
[dependencies.pyo3]
version = "0.28.3"
features = ["extension-module"]
optional = true
[dependencies.thiserror]
version = "2.0.18"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"