Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
beet
Beet is a framework for building technologies that can people can share, access and make their own like other forms of folk culture like music and story. Beet uses the Entity Component System architecture of Bevy, a modular game engine, to provide a common agnostic paradigm for state and behavior across domains like web, games and robotics.
ð§ Mind your step! ð§
Beet is under construction, if this project is of interest please come and say hi in the Beetmash Discord Server.
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_core |
ðĶĒ | Core utilities and types for other beet crates |
beet_net |
ðĢ | Cross-platform networking utilities |
Control Flow
Control flow crates for use in behavior paradigms like behavior trees, utility AI or agentic systems.
world
.spawn
.trigger_target
.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 |
Web
Crates for building and deploying web apps. These crates are very experimental and changing frequently.
| 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_examples |
ð | Bits and pieces for substantial beet examples |
emby |
ð | the beetmash ambassador |
Bevy Versions
This chart is for matching a bevy version against a particular beet version.
bevy |
beet |
|---|---|
| 0.17 | 0.0.7 |
| 0.16 | 0.0.6 |
| 0.15 | 0.0.4 |
| 0.14 | 0.0.2 |
| 0.12 | 0.0.1 |
Local Development
Required Tools
- Rust nightly
- Just
Running
Note that testing all crates involves compiling many crates, doing so from scratch usually results in a stack overflow in the rust compiler. To prevent this either run with RUST_MIN_STACK='some_gigantic_number', or just keep re-running the command until its all compiled. I usually just do the latter.