1
1
Fork 0
mirror of https://github.com/griffi-gh/hUI.git synced 2025-04-07 08:26:27 -05:00

update deps

This commit is contained in:
griffi-gh 2025-02-28 16:18:13 +01:00
parent a939e6e336
commit b2d6a347ba
7 changed files with 10 additions and 10 deletions
hui-examples
hui-glium
hui-painter-wip
hui-shared
hui-wgpu
hui-winit
hui

View file

@ -10,10 +10,10 @@ hui = { path = "../hui" }
# hui-painter = { path = "../hui-painter" }
hui-glium = { path = "../hui-glium" }
hui-winit = { path = "../hui-winit" }
kubi-logging = { git = "https://github.com/griffi-gh/kubi", rev = "be1e24ba0c9e6d24128e7d0e74bebd8b90c23be7" }
kubi-logging = { git = "https://github.com/griffi-gh/kubi", rev = "1e051c47b64c967305e4bbbd464ef5da2cc56bbb" }
glium = "0.36"
winit = "0.30"
glam = "0.29"
glam = "0.30"
log = "0.4"
image = { version = "0.25", features = ["jpeg", "png"] }

View file

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

View file

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

View file

@ -14,4 +14,4 @@ include = [
]
[dependencies]
glam = "0.29"
glam = "0.30"

View file

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

View file

@ -18,7 +18,7 @@ hui = { version = "=0.1.0-alpha.6", path = "../hui", default-features = false }
winit = { version = "0.30", default-features = false, features = ["x11"]}
# 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.29"
glam = "0.30"
log = "0.4"
[features]

View file

@ -21,13 +21,13 @@ hui-shared = { version = "0.1.0-alpha.6", path = "../hui-shared" }
# hui-painter = { version = "0.1.0-alpha.6", path = "../hui-painter" }
hashbrown = "0.15"
nohash-hasher = "0.2"
glam = "0.29"
glam = "0.30"
fontdue = "0.9"
rect_packer = "0.2"
log = "0.4"
document-features = "0.2"
derive_setters = "0.1"
derive_more = { version = "1.0", features = [ "full" ] }
derive_more = { version = "2.0", features = [ "full" ] }
tinyset = "0.5"
image = { version = "0.25", default-features = false, optional = true }
rustc-hash = "2.0"