diff --git a/Cargo.toml b/Cargo.toml index 072c7fc..1fe8c06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -bevy = "0.10" +bevy = "0.11" diff --git a/src/main.rs b/src/main.rs index c2369c0..dc2e207 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,7 +9,7 @@ use bevy::prelude::*; fn main() { App::new() .add_plugins(DefaultPlugins) - .add_startup_system(setup) + .add_systems(Startup, setup) .run(); }