20 lines
492 B
TOML
20 lines
492 B
TOML
[package]
|
|
name = "metacrate-rendering-wgpu"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Reusable headless wgpu scene renderer and projection camera"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
wgpu = { version = "30.0.1", default-features = false, features = ["std", "dx12", "metal", "gles", "vulkan", "wgsl"], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
wgpu = ["dep:wgpu"]
|
|
|
|
[lints]
|
|
workspace = true
|