Update deps

This commit is contained in:
griffi-gh 2024-12-11 20:17:34 +01:00
parent 121e667bdb
commit 9b3490b8e5
7 changed files with 11 additions and 10 deletions

View file

@ -13,7 +13,7 @@ hui-winit = { path = "../hui-winit" }
kubi-logging = { git = "https://github.com/griffi-gh/kubi", rev = "be1e24ba0c9e6d24128e7d0e74bebd8b90c23be7" }
glium = "0.35"
winit = "0.30"
glam = "0.28"
glam = "0.29"
log = "0.4"
image = { version = "0.25", features = ["jpeg", "png"] }

View file

@ -17,6 +17,6 @@ include = [
[dependencies]
hui = { version = "=0.1.0-alpha.5", path = "../hui", default-features = false }
glium = { version = "0.35", default-features = false }
glam = "0.28"
glium = { version = "0.36", default-features = false }
glam = "0.29"
log = "0.4"

View file

@ -16,7 +16,7 @@ include = [
[dependencies]
hui-shared = { version = "0.1.0-alpha.5", path = "../hui-shared" }
glam = "0.28"
glam = "0.29"
log = "0.4"
rect_packer = "0.2" # TODO: use sth else like `crunch` instead?
hashbrown = "0.14"

View file

@ -4,4 +4,4 @@ version = "0.1.0-alpha.5"
edition = "2021"
[dependencies]
glam = "0.28"
glam = "0.29"

View file

@ -17,7 +17,7 @@ include = [
[dependencies]
hui = { version = "=0.1.0-alpha.5", path = "../hui", default-features = false }
wgpu = { version = "0.20", default-features = false, features = ["wgsl"]}
wgpu = { version = "23", default-features = false, features = ["wgsl"]}
bytemuck = "1.15"
log = "0.4"
glam = "0.28"
glam = "0.29"

View file

@ -155,13 +155,13 @@ impl WgpuUiRenderer {
vertex: wgpu::VertexState {
module: &shader_module,
compilation_options: wgpu::PipelineCompilationOptions::default(),
entry_point: "vs_main",
entry_point: Some("vs_main"),
buffers: &[WgpuVertex::LAYOUT],
},
fragment: Some(wgpu::FragmentState {
module: &shader_module,
compilation_options: wgpu::PipelineCompilationOptions::default(),
entry_point: "fs_main",
entry_point: Some("fs_main"),
targets: &[Some(wgpu::ColorTargetState {
format: surface_format,
blend: Some(wgpu::BlendState::ALPHA_BLENDING),
@ -180,6 +180,7 @@ impl WgpuUiRenderer {
depth_stencil: None,
multisample: wgpu::MultisampleState::default(),
multiview: None,
cache: None,
});
Self {

View file

@ -18,7 +18,7 @@ hui = { version = "=0.1.0-alpha.5", path = "../hui", default-features = false }
winit = { version = "0.30", default-features = false }
# winit_30 = { package = "winit", version = "0.30", default-features = false, optional = true }
# winit_29 = { package = "winit", version = "0.29", default-features = false, optional = true }
glam = "0.28"
glam = "0.29"
log = "0.4"
[features]