21 lines
545 B
TOML
21 lines
545 B
TOML
[package]
|
|
name = "bevy_mod_xr"
|
|
description = "semi generic Xr Api for Community Driven XR in Bevy"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
keywords = ["gamedev", "bevy", "Xr", "Vr"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[features]
|
|
default = ["gizmos"]
|
|
gizmos = ["bevy/bevy_gizmos"]
|
|
|
|
[dependencies]
|
|
bevy = { workspace = true, features = ["bevy_log"] }
|
|
|
|
[lints.clippy]
|
|
too_many_arguments = "allow"
|
|
type_complexity = "allow"
|