schminput 0.5.0

An Action Based Input Manager for Bevy
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "schminput"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An Action Based Input Manager for Bevy"
readme = "README.md"
keywords = [
    "bevy",
    "input",
    "vr",
    "xr",
    "action",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Schmarni-Dev/Schminput/"

[features]
default = []
xr = [
    "dep:bevy_mod_openxr",
    "dep:bevy_mod_xr",
    "dep:openxr",
]

[lib]
name = "schminput"
path = "src/lib.rs"

[[example]]
name = "actionset_disabling"
path = "examples/actionset_disabling.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "binding_modifications"
path = "examples/binding_modifications.rs"

[[example]]
name = "subaction_paths"
path = "examples/subaction_paths.rs"

[[example]]
name = "xr"
path = "examples/xr.rs"
required-features = ["xr"]

[[example]]
name = "xr_actionset_priorities"
path = "examples/xr_actionset_priorities.rs"
required-features = ["xr"]

[dependencies.atomicow]
version = "1.0.0"

[dependencies.bevy]
version = "0.18"
features = [
    "mouse",
    "keyboard",
    "gamepad",
    "bevy_log",
]
default-features = false

[dependencies.bevy_mod_xr]
version = "0.5"
optional = true

[dev-dependencies.bevy]
version = "0.18"
features = [
    "mouse",
    "keyboard",
    "gamepad",
]
default-features = true

[dev-dependencies.bevy_mod_openxr]
version = "0.5"

[target.'cfg(not(target_family = "wasm"))'.dependencies.bevy_mod_openxr]
version = "0.5"
optional = true

[target.'cfg(not(target_family = "wasm"))'.dependencies.openxr]
version = "0.21"
optional = true

[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"