Update all dependencies
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 5m39s

This commit is contained in:
Florian RICHER 2025-05-16 13:47:24 +02:00
parent 285b194280
commit dda368e802
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
9 changed files with 426 additions and 299 deletions

View file

@ -1,7 +1,7 @@
use std::{any::Any, sync::Arc};
use bevy_app::App;
use bevy_ecs::system::Resource;
use bevy_ecs::resource::Resource;
use vulkano::{
command_buffer::{
AutoCommandBufferBuilder, CommandBufferUsage, PrimaryAutoCommandBuffer,

View file

@ -1,5 +1,5 @@
use bevy_app::App;
use bevy_ecs::system::Resource;
use bevy_ecs::resource::Resource;
use std::sync::Arc;
use vulkano::image::view::ImageView;
use vulkano::image::{Image, ImageUsage};

View file

@ -1,4 +1,4 @@
use bevy_ecs::system::Resource;
use bevy_ecs::resource::Resource;
use winit::{dpi::PhysicalSize, window::WindowAttributes};
#[derive(Resource, Clone)]

View file

@ -1,6 +1,6 @@
use std::sync::Arc;
use bevy_ecs::system::Resource;
use bevy_ecs::resource::Resource;
use winit::{event_loop::EventLoopProxy, window::Window};
#[derive(Resource)]