Registry / other / bevy
library0.18.1rscratesunverified

A refreshingly simple data-driven game engine and app framework.

# Cargo.toml [dependencies] bevy = "0.18.1"
INSTALL
IMPORT
SIG · BEVY
B
bevy
otherrustv0.18.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

App
use bevy::prelude::*;

Create a minimal Bevy app that prints a message on startup.

use bevy::prelude::*; fn main() { App::new() .add_plugins(DefaultPlugins) .add_systems(Startup, hello_world) .run(); } fn hello_world() { println!("Hello, world!"); }
Debug
Known issues
breakingBevy has frequent breaking changes between minor versions; upgrading may require significant code changes.
fix
Pin to a specific version and follow the official migration guides.
affects: >=0.5.0
gotchaDefault plugins include many features; compile times can be long.
fix
Use `MinimalPlugins` or disable unused features to speed up compilation.
affects: >=0.10.0
Upgrade
Version history
0.18.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
15 hits · last 30 days
node
12
Meta
2
OpenAI (training)
1
Resources
bevy — cargo add bevy · libregistry