diff --git a/Cargo.lock b/Cargo.lock index 6fb5beb..a59210d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -569,6 +569,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21ecf404295055deb7fe037495891bc135ca10d46bc5b6c55f9ab7b7ebc61d31" dependencies = [ "base64", + "bevy_animation", "bevy_app", "bevy_asset", "bevy_core", diff --git a/Cargo.toml b/Cargo.toml index 51a0b3d..2e52602 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ build = "build/build.rs" [dependencies] regex = "1" -bevy = { version = "0.13.2", default-features = false, features = ["bevy_animation", "bevy_asset", "bevy_audio", "bevy_scene", "bevy_winit", "bevy_core_pipeline", "bevy_pbr", "bevy_gltf", "bevy_render", "bevy_text", "bevy_ui", "jpeg", "multi-threaded", "tonemapping_luts", "vorbis"]} +bevy = { version = "0.13.2", default-features = false, features = ["animation", "bevy_asset", "bevy_audio", "bevy_scene", "bevy_winit", "bevy_core_pipeline", "bevy_pbr", "bevy_gltf", "bevy_render", "bevy_text", "bevy_ui", "jpeg", "multi-threaded", "tonemapping_luts", "vorbis"]} bevy_xpbd_3d = { version = "0.4.2", default-features = false, features = ["3d", "f64", "parry-f64", "parallel", "async-collider"] } bevy_embedded_assets = { version = "0.10.2", optional = true } fastrand = "2.0"