8 releases

Uses new Rust 2024

0.0.7 Oct 7, 2025
0.0.6 Jul 25, 2025
0.0.3 Jul 14, 2024

#2234 in Game dev

Download history 35/week @ 2025-07-13 131/week @ 2025-07-20 42/week @ 2025-07-27 9/week @ 2025-08-03 14/week @ 2025-08-10 14/week @ 2025-08-17 63/week @ 2025-08-24 100/week @ 2025-08-31 58/week @ 2025-09-07 46/week @ 2025-09-14 59/week @ 2025-09-21 60/week @ 2025-09-28 219/week @ 2025-10-05 79/week @ 2025-10-12 81/week @ 2025-10-19 41/week @ 2025-10-26

422 downloads per month
Used in 18 crates (17 directly)

MIT/Apache

375KB
10K SLoC

beet

A Very Bevy Metaframework

Crates.io version Download docs.rs docs

Guidebook | API Docs

Beet brings bevy to the entire application stack. Going full-stack bevy is a big job and its early days so your mileage may vary depending on your application:

readiness meter

  • 🦒 ready to go: documented and tested
  • 🐣 near stable: incomplete docs
  • πŸ‰ highly experimental: here be dragons

Beet crates fall into a few main categories.

Utils

General patterns and tools for application development.

Crate Status Description
beet_utils 🦒 Base level utilities for beet crates
beet_core 🦒 Core utilities and types for other beet crates
beet_net 🐣 Cross-platform networking utilities
sweet 🐣 A delightful cross-platform test runner
sweet-cli 🐣 A delightful cross-platform test runner

Control Flow

Control flow crates for use in behavior paradigms like behavior trees, utility AI or agentic systems.

world
	.spawn((
		Name::new("My Behavior"),
		Sequence,
		children![
			(
				Name::new("Hello"),
				EndWith(Outcome::Pass),
			),
			(
				Name::new("World"),
				EndWith(Outcome::Pass),
			),
		],
	))
	.trigger_action(GetOutcome)
	.flush();
Crate Status Description
beet_flow 🦒 An ECS control flow library
beet_spatial 🐣 Spatial actions built upon beet_flow
beet_ml πŸ‰ Machine Learning actions built upon beet_flow
beet_sim πŸ‰ Game AI simulation primitives built upon beet_flow

Web

Crates for building and deploying web apps. At this stage it is only recommended to develop locally by cloning this repo. See [Contributing] (crates/beet_site/src/docs/contributing.md) for more details.

#[template]
fn Counter(initial: i32) -> impl Bundle {
  let (get, set) = signal(initial);

  rsx! {
    <button onclick=move |_| set(get() + 1)>
      Cookie Count: {get}
    </button>
  }
}
Crate Status Description
beet_dom πŸ‰ Utilities for dom rendering and interaction
beet_parse πŸ‰ Parsers for various text and token formats
beet_rsx πŸ‰ An Astro inspired templating system built with bevy
beet_rsx_combinator πŸ‰ JSX-like parser combinator for Rust
beet_router πŸ‰ ECS router and server utilities
beet_build πŸ‰ Codegen and compilation tooling for beet
beet_design πŸ‰ Design system and components for beet rsx
beet-cli πŸ‰ Tools for building and deploying beet apps
beet_site πŸ‰ The beet website, built with beet

Experiments

Crate Status Description
beet_agent πŸ‰ ECS agentic workflow patterns
beet_query πŸ‰ Extend beet server actions with database queries
beet_examples πŸ‰ Bits and pieces for substantial beet examples
emby πŸ‰ the beetmash ambassador
beet_mcp πŸ‰ Experimental mcp server

Bevy Versions

This chart is for matching a bevy version against a particular beet version.

bevy beet
0.16 0.0.6
0.15 0.0.4
0.14 0.0.2
0.12 0.0.1

Dependencies

~41–82MB
~1.5M SLoC