[package]
name = "graphics"
version = "0.6.0"
authors = ["David O'Connor <the_alchemist@fastmail.com>"]
description = "A 3D rendering engine for rust programs, with GUI integration"
edition = "2024"
keywords = ["graphics", "engine", "gui", "render", "wgpu"]
categories = [
"rendering",
"rendering::engine",
"graphics",
]
repository = "https://github.com/David-OConnor/graphics"
documentation = "https://docs.rs/graphics"
readme = "README.md"
license = "MIT"
[dependencies]
lin_alg = { version = "1.4.3", features = ["computer_graphics"] }
wgpu = "29.0.1"
winit = "0.30.12"
egui = "0.34.1"
egui-wgpu = "0.34.1"
egui-winit = "0.34.1"
pollster = "0.4.0"
image = "0.25.2"
obj = "0.10.2"
bincode = { version = "2.0.1", optional = true }
[patch.crates-io]
[features]
app_utils = ["bincode", "lin_alg/bincode"]