[package]
edition = "2021"
name = "bevy_gearbox"
version = "0.9.0"
build = false
exclude = [
"assets/",
".cargo/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "State machine system for the bevy game engine"
homepage = "https://github.com/DEMIURGE-studio/bevy_gearbox"
readme = "README.md"
keywords = [
"bevy",
"state-machine",
"gamedev",
"ecs",
]
categories = [
"game-development",
"game-engines",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DEMIURGE-studio/bevy_gearbox"
resolver = "3"
[features]
default = []
gauge = ["bevy_gearbox_core/gauge"]
server = ["dep:bevy_gearbox_protocol"]
trace_tracy = ["bevy/trace_tracy"]
[lib]
name = "bevy_gearbox"
path = "src/lib.rs"
[[example]]
name = "guarded_transitions"
path = "examples/guarded_transitions.rs"
[[example]]
name = "hello_statechart"
path = "examples/hello_statechart.rs"
[[example]]
name = "hierarchy"
path = "examples/hierarchy.rs"
[[example]]
name = "history"
path = "examples/history.rs"
[[example]]
name = "internal_transitions"
path = "examples/internal_transitions.rs"
[[example]]
name = "parallel_regions"
path = "examples/parallel_regions.rs"
[[example]]
name = "schedule_phases"
path = "examples/schedule_phases.rs"
[[example]]
name = "state_bridge"
path = "examples/state_bridge.rs"
[[example]]
name = "state_components"
path = "examples/state_components.rs"
[[example]]
name = "sub_charts"
path = "examples/sub_charts.rs"
[[example]]
name = "validators"
path = "examples/validators.rs"
[[test]]
name = "bsn_authoring"
path = "tests/bsn_authoring.rs"
[[test]]
name = "delay"
path = "tests/delay.rs"
[[test]]
name = "delayed_message_edge"
path = "tests/delayed_message_edge.rs"
[[test]]
name = "guards"
path = "tests/guards.rs"
[[test]]
name = "history"
path = "tests/history.rs"
[[test]]
name = "init_stress"
path = "tests/init_stress.rs"
[[test]]
name = "internal_transitions"
path = "tests/internal_transitions.rs"
[[test]]
name = "messages"
path = "tests/messages.rs"
[[test]]
name = "multiple_machines"
path = "tests/multiple_machines.rs"
[[test]]
name = "parallel_completion"
path = "tests/parallel_completion.rs"
[[test]]
name = "parallel_regions"
path = "tests/parallel_regions.rs"
[[test]]
name = "state_components"
path = "tests/state_components.rs"
[[test]]
name = "state_events"
path = "tests/state_events.rs"
[[test]]
name = "state_guards"
path = "tests/state_guards.rs"
[[test]]
name = "terminal_state"
path = "tests/terminal_state.rs"
[[test]]
name = "transition_resolution"
path = "tests/transition_resolution.rs"
[dependencies.bevy]
version = "0.19.0"
features = ["bevy_state"]
default-features = false
[dependencies.bevy_gearbox_core]
version = "=0.9.0"
[dependencies.bevy_gearbox_macros]
version = "=0.9.0"
[dependencies.bevy_gearbox_protocol]
version = "=0.9.0"
features = ["server"]
optional = true
default-features = false
[dev-dependencies.bevy]
version = "0.19.0"
features = ["default"]
default-features = false