Update to Bevy 0.8.

This commit is contained in:
Nolan Darilek 2022-08-01 11:10:50 -05:00
parent 7de7ae66ad
commit f30bd26150
2 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@ speech_dispatcher_0_10 = ["tts/speech_dispatcher_0_10"]
tolk = ["tts/tolk"] tolk = ["tts/tolk"]
[dependencies] [dependencies]
bevy = { version = "0.7", default-features = false } bevy = { version = "0.8", default-features = false }
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
tts = { version = "0.23", default-features = false } tts = { version = "0.23", default-features = false }
[dev-dependencies] [dev-dependencies]
bevy = { version = "0.7", default-features = true } bevy = { version = "0.8", default-features = true }

View File

@ -5,7 +5,7 @@ fn main() {
App::new() App::new()
.add_plugins(DefaultPlugins) .add_plugins(DefaultPlugins)
.add_plugin(bevy_tts::TtsPlugin) .add_plugin(bevy_tts::TtsPlugin)
.add_system(bevy::input::system::exit_on_esc_system) .add_system(bevy::window::close_on_esc)
.add_startup_system(setup) .add_startup_system(setup)
.add_system(event_poll) .add_system(event_poll)
.add_system(greet) .add_system(greet)