smallpt 1.0.0

A small ray/pathtracer in Rust, inspired by Kevin Beason's educational 99-lines ray/pathtracer (http://www.kevinbeason.com/smallpt/)
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 = "2021"
name = "smallpt"
version = "1.0.0"
authors = ["Colin Barré-Brisebois <colinbb@gmail.com>"]
build = "build.rs"
exclude = ["images/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small ray/pathtracer in Rust, inspired by Kevin Beason's educational 99-lines ray/pathtracer (http://www.kevinbeason.com/smallpt/)"
readme = "README.md"
keywords = [
    "raytracer",
    "raytracing",
    "ray-tracing",
    "path-tracer",
]
categories = ["rendering"]
license = "MIT"
repository = "https://github.com/zigguratvertigo/smallpt-rs"

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

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

[dependencies.bvh]
version = "0.12"

[dependencies.log]
version = "0.4"

[dependencies.nalgebra]
version = "0.34"

[dependencies.rand]
version = "0.9"

[dependencies.rayon]
version = "1.12"

[dev-dependencies.clap]
version = "4"
features = ["derive"]

[dev-dependencies.minifb]
version = "0.28"