behaviortree 0.7.4

A #![no_std] compatible behavior tree library similar to 'BehaviorTree.CPP'.
Documentation
// Copyright © 2025 Stephan Kunz
//! Built-in `Decorator` behaviors of [`behaviortree`](crate).

mod delay;
mod entry_updated;
mod force_state;
mod inverter;
mod keep_running_until_failure;
mod loop_queue;
mod precondition;
mod repeat;
mod retry_until_successful;
mod run_once;
mod timeout;

// flatten
pub use delay::Delay;
pub use entry_updated::EntryUpdated;
pub use force_state::ForceState;
pub use inverter::Inverter;
pub use keep_running_until_failure::KeepRunningUntilFailure;
pub use loop_queue::Loop;
pub use precondition::Precondition;
pub use repeat::Repeat;
pub use retry_until_successful::RetryUntilSuccessful;
pub use run_once::RunOnce;
pub use timeout::Timeout;