diff --git a/Cargo.lock b/Cargo.lock index 1ce3ea8..6fb5beb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -304,6 +304,25 @@ dependencies = [ "bevy_ecs", ] +[[package]] +name = "bevy_animation" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e553d68bc937586010ed2194ac66b751bc6238cf622b3ed5a86f4e1581e94509" +dependencies = [ + "bevy_app", + "bevy_asset", + "bevy_core", + "bevy_ecs", + "bevy_hierarchy", + "bevy_math", + "bevy_reflect", + "bevy_render", + "bevy_time", + "bevy_transform", + "bevy_utils", +] + [[package]] name = "bevy_app" version = "0.13.2" @@ -608,6 +627,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f58ec0ce77603df9474cde61f429126bfe06eb79094440e9141afb4217751c79" dependencies = [ "bevy_a11y", + "bevy_animation", "bevy_app", "bevy_asset", "bevy_audio", diff --git a/Cargo.toml b/Cargo.toml index dcb43ec..51a0b3d 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 = ["jpeg", "bevy_asset", "bevy_audio", "bevy_scene", "bevy_winit", "bevy_core_pipeline", "bevy_pbr", "bevy_gltf", "bevy_render", "bevy_text", "bevy_ui", "multi-threaded", "tonemapping_luts", "vorbis"]} +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_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"