[package]
edition = "2021"
rust-version = "1.92"
name = "roxlap-cli"
version = "0.29.0"
authors = ["Anton Gushcha <ncrashed@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line asset tool for the roxlap voxel engine — convert MagicaVoxel .vox, .kv6 sprites and GIF/PNG billboards between the engine formats, plus asset + scene-snapshot inspection."
documentation = "https://docs.rs/roxlap-cli"
readme = "README.md"
keywords = [
"voxel",
"magicavoxel",
"kv6",
"voxlap",
"cli",
]
categories = [
"command-line-utilities",
"game-development",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/NCrashed/roxlap"
[[bin]]
name = "roxlap-cli"
path = "src/main.rs"
[dependencies.glam]
version = "0.30"
features = [
"std",
"serde",
]
default-features = false
[dependencies.roxlap-formats]
version = "0.29"
features = [
"gif",
"png",
]
[dependencies.roxlap-scene]
version = "0.29"
[dev-dependencies.gif]
version = "0.13"
[dev-dependencies.png]
version = "0.17"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
float_cmp = "allow"
items_after_statements = "allow"
manual_assert = "allow"
many_single_char_names = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
needless_for_each = "allow"
similar_names = "allow"
single_match_else = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
verbose_bit_mask = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "warn"