model_to_image 0.1.1

A way to convert a 3D model to an image to use with thumbnails and previews
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "model_to_image"
version = "0.1.1"
build = false
include = [
    "src/**",
    "Cargo.toml",
    "README.md",
    "doc/*",
    "output.png",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A way to convert a 3D model to an image to use with thumbnails and previews"
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/4tkbytes/dropbear-engine"

[features]
cli = ["clap"]
default = []

[lib]
name = "model_to_image"
path = "src/lib.rs"

[[bin]]
name = "model_to_image"
path = "src/main.rs"
required-features = ["cli"]

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true

[dependencies.image]
version = "0.25"
features = [
    "png",
    "jpeg",
]
default-features = false

[dependencies.nalgebra]
version = "0.34"

[dependencies.rand]
version = "0.9"

[dependencies.russimp-ng]
version = "3.2"
features = ["static-link"]

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "abort"