[package]
categories.workspace = true
description = "Offscreen GPU renderer for brepkit B-Rep solids"
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "brepkit-render"
readme = "../../README.md"
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[features]
default = []
window = ["dep:winit", "dep:log"]
[dependencies]
brepkit-math.workspace = true
brepkit-operations.workspace = true
brepkit-topology.workspace = true
bytemuck = {version = "1", features = ["derive"]}
image = {version = "0.25", default-features = false, features = ["png"]}
pollster = "1.0"
thiserror.workspace = true
wgpu = "30"
log = {workspace = true, optional = true}
winit = {version = "0.30", optional = true}
[[example]]
name = "viewer"
required-features = ["window"]
[lints]
workspace = true