Files
bevy_oxr/crates/bevy_webxr/Cargo.toml
Schmarni 7320ae8dac update to bevy 0.15 rc
Signed-off-by: Schmarni <marnistromer@gmail.com>
2024-12-01 23:15:31 +01:00

24 lines
618 B
TOML

[package]
name = "bevy_mod_webxr"
description = "future bevy_mod_xr webxr backend"
version = "0.0.0"
edition.workspace = true
repository.workspace = true
license.workspace = true
# bevy can't be placed behind target or proc macros won't work properly
[dependencies]
bevy.workspace = true
# all dependencies are placed under this since on anything but wasm, this crate is completely empty
[target.'cfg(target_family = "wasm")'.dependencies]
thiserror.workspace = true
wgpu.workspace = true
wgpu-hal.workspace = true
bevy_mod_xr.workspace = true
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"