enginerenderer 0.0.1

A zero-dependency offline rendering engine in pure Rust — CPU path tracing, BVH acceleration, 16-band spectral rendering, PBR materials, animation & video export.
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.85"
name = "enginerenderer"
version = "0.0.1"
authors = ["Rayan Morel"]
build = false
include = [
    "src/**/*.rs",
    "benches/**/*.rs",
    "tests/**/*.rs",
    "examples/**/*.rs",
    "fpstests/**/*.md",
    "Cargo.toml",
    "ReadMe.md",
    "License",
    "ChangeLog.md",
    "CONTRIBUTING.md",
    "arborescence.md",
    "quickstart.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-dependency offline rendering engine in pure Rust — CPU path tracing, BVH acceleration, 16-band spectral rendering, PBR materials, animation & video export."
homepage = "https://github.com/rayanmorel381-beep/EngineRenderer"
documentation = "https://docs.rs/enginerenderer"
readme = "ReadMe.md"
keywords = [
    "rendering",
    "path-tracing",
    "3d",
    "animation",
    "ray-tracing",
]
categories = [
    "graphics",
    "multimedia",
    "simulation",
    "science",
]
license = "MIT"
repository = "https://github.com/rayanmorel381-beep/EngineRenderer"

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

[[bin]]
name = "enginerenderer"
path = "src/main.rs"

[[example]]
name = "gpu_render_demo"
path = "examples/gpu_render_demo.rs"

[[example]]
name = "gpu_render_heavy"
path = "examples/gpu_render_heavy.rs"

[[example]]
name = "gpu_window"
path = "examples/gpu_window.rs"

[[test]]
name = "android_benchmark_contract"
path = "tests/android_benchmark_contract.rs"

[[test]]
name = "android_gpu_backend"
path = "tests/android_gpu_backend.rs"

[[test]]
name = "diagnose_smoke"
path = "tests/diagnose_smoke.rs"

[[test]]
name = "engine_api_basics"
path = "tests/engine_api_basics.rs"

[[test]]
name = "generator_request"
path = "tests/generator_request.rs"

[[test]]
name = "gpu_raytracer_smoke"
path = "tests/gpu_raytracer_smoke.rs"

[[test]]
name = "material_catalog"
path = "tests/material_catalog.rs"

[[test]]
name = "math_utils"
path = "tests/math_utils.rs"

[[test]]
name = "output_format"
path = "tests/output_format.rs"

[[test]]
name = "realtime_profiles"
path = "tests/realtime_profiles.rs"

[[test]]
name = "render_request_clamp"
path = "tests/render_request_clamp.rs"

[[test]]
name = "render_request_presets"
path = "tests/render_request_presets.rs"

[[test]]
name = "scene_descriptor_robustness"
path = "tests/scene_descriptor_robustness.rs"

[[test]]
name = "workspace_render_validation"
path = "tests/workspace_render_validation.rs"

[[bench]]
name = "android_gpu"
path = "benches/android_gpu.rs"
harness = false

[[bench]]
name = "desktop_gpu"
path = "benches/desktop_gpu.rs"
harness = false

[[bench]]
name = "parsers"
path = "benches/parsers.rs"
harness = false