22 lines
622 B
TOML
22 lines
622 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]
|
|
bevy = { version = "0.19.1", default-features = false, features = ["3d_bevy_render", "default_app", "multi_threaded", "pbr_specular_textures"], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
bevy-engine = ["dep:bevy"]
|
|
wgpu = ["bevy-engine"]
|
|
windowed = ["bevy-engine", "bevy/bevy_winit", "bevy/wayland", "bevy/x11"]
|
|
|
|
[lints]
|
|
workspace = true
|