myth_render 0.2.0

Core rendering system for the Myth engine (render graph, pipeline, GPU management).
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"
rust-version = "1.92"
name = "myth_render"
version = "0.2.0"
authors = ["Pan Xinmiao <pan_xinmiao@163.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core rendering system for the Myth engine (render graph, pipeline, GPU management)."
homepage = "https://github.com/panxinmiao/myth"
readme = false
keywords = [
    "3d",
    "gamedev",
    "wgpu",
    "webgpu",
    "graphics",
]
categories = [
    "game-development",
    "graphics",
    "rendering::engine",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/panxinmiao/myth"
resolver = "2"

[features]
debug_view = ["myth_scene/debug_view"]
default = []
rdg_inspector = []

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

[dependencies.bitflags]
version = "2.11.0"

[dependencies.bumpalo]
version = "3.20.2"

[dependencies.bytemuck]
version = "1.25"
features = [
    "derive",
    "min_const_generics",
]

[dependencies.flume]
version = "0.12.0"

[dependencies.glam]
version = "0.32.1"
features = [
    "bytemuck",
    "scalar-math",
]

[dependencies.half]
version = "2.7"

[dependencies.log]
version = "0.4"

[dependencies.minijinja]
version = "2.19.0"
features = [
    "loader",
    "custom_syntax",
]

[dependencies.myth_animation]
version = "0.2.0"

[dependencies.myth_assets]
version = "0.2.0"

[dependencies.myth_core]
version = "0.2.0"

[dependencies.myth_resources]
version = "0.2.0"

[dependencies.myth_scene]
version = "0.2.0"

[dependencies.parking_lot]
version = "0.12"

[dependencies.paste]
version = "1.0"

[dependencies.rand]
version = "0.10.0"

[dependencies.raw-window-handle]
version = "0.6"

[dependencies.rust-embed]
version = "8.11.0"

[dependencies.rustc-hash]
version = "2.1.2"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.slotmap]
version = "1.1.1"
features = ["serde"]

[dependencies.smallvec]
version = "1.15"

[dependencies.wgpu]
version = "29.0.1"
features = ["wgsl"]

[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.parking_lot]
version = "0.12"
features = ["deadlock_detection"]

[target.'cfg(target_arch = "wasm32")'.dependencies.wgpu]
version = "29.0.1"
features = [
    "wgsl",
    "webgpu",
    "fragile-send-sync-non-atomic-wasm",
]

[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
ref_as_ptr = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]