update all deps

This commit is contained in:
Aleksander
2025-12-08 22:57:44 +01:00
parent b0985e33af
commit e76ad82c60
8 changed files with 870 additions and 853 deletions

1667
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -22,13 +22,13 @@ resolver = "3"
[workspace.dependencies]
anyhow = "1.0.100"
glam = { version = "0.30.7", features = ["mint", "serde"] }
glam = { version = "0.30.9", features = ["mint", "serde"] }
idmap = "0.2.2"
idmap-derive = "0.2.2"
log = "0.4.28"
regex = "1.11.3"
rust-embed = "8.7.2"
slotmap = "1.0.7"
idmap-derive = "0.2.22"
log = "0.4.29"
regex = "1.12.2"
rust-embed = "8.9.0"
slotmap = "1.1.1"
vulkano = { version = "0.35.2", default-features = false, features = [
"macros",
] }

View File

@@ -10,7 +10,7 @@ glam = { workspace = true, features = ["mint", "serde"] }
log = { workspace = true }
rust-embed = { workspace = true }
chrono = "0.4.42"
gio = "0.21.2"
gio = "0.21.5"
gtk = "0.18.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"

View File

@@ -8,8 +8,8 @@ description = "wgui library testing using winit backend"
anyhow = { workspace = true }
glam = { workspace = true }
log = { workspace = true }
rust-embed = "8.7.2"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
rust-embed = "8.9.0"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
wgui = { path = "../wgui/" }
winit = "0.30.12"
vulkano = { workspace = true }

View File

@@ -5,10 +5,10 @@ edition = "2024"
[dependencies]
anyhow = { workspace = true }
cosmic-text = "0.14.2"
cosmic-text = "0.15.0"
etagere = "0.2.15"
glam = { workspace = true }
image = { version = "0.25.8", default-features = false, features = [
image = { version = "0.25.9", default-features = false, features = [
"gif",
"jpeg",
"png",
@@ -16,17 +16,17 @@ image = { version = "0.25.8", default-features = false, features = [
"webp",
] }
log = { workspace = true }
lru = "0.16.1"
lru = "0.16.2"
ouroboros = "0.18.5"
parking_lot = "0.12.4"
parking_lot = "0.12.5"
regex = { workspace = true }
resvg = { version = "0.45.1", default-features = false }
roxmltree = "0.20.0"
roxmltree = "0.21.1"
rustc-hash = "2.1.1"
serde_json = "1.0.145"
slotmap = { workspace = true }
smallvec = "1.15.1"
taffy = "0.9.1"
taffy = "0.9.2"
vulkano = { workspace = true }
vulkano-shaders = { workspace = true }
rust-embed = { workspace = true }

View File

@@ -8,8 +8,8 @@ use crate::{
globals::Globals,
layout::WidgetID,
renderer_vk::text::{
custom_glyph::{CustomGlyph, CustomGlyphData},
DEFAULT_METRICS,
custom_glyph::{CustomGlyph, CustomGlyphData},
},
};
@@ -73,7 +73,7 @@ impl WidgetObj for WidgetSprite {
let attrs = Attrs::new().color(Color::rgb(255, 0, 255)).weight(Weight::BOLD);
// set text last in order to avoid expensive re-shaping
buffer.set_text("Error", &attrs, Shaping::Basic);
buffer.set_text("Error", &attrs, Shaping::Basic, None);
}
state.primitives.push(drawing::RenderPrimitive::Text(

View File

@@ -30,7 +30,7 @@ ashpd = { version = "0.12.0", default-features = false, features = [
], optional = true }
drm-fourcc = "2.2.0"
idmap = { workspace = true }
libc = "0.2.175"
libc = "0.2.178"
log = { workspace = true }
pipewire = { git = "https://gitlab.freedesktop.org/galister/pipewire-rs.git", ref = "ba32202c3c391004c3bb533b58fa75a50e47ff57", features = [
"v0_3_33",

View File

@@ -24,9 +24,9 @@ anyhow = { workspace = true }
ash = "^0.38.0" # must match vulkano
chrono = "0.4.42"
chrono-tz = "0.10.4"
clap = { version = "4.5.48", features = ["derive"] }
config = "0.15.16"
ctrlc = { version = "3.5.0", features = ["termination"] }
clap = { version = "4.5.53", features = ["derive"] }
config = "0.15.19"
ctrlc = { version = "3.5.1", features = ["termination"] }
dbus = { version = "0.9.9" }
futures = "0.3.31"
glam = { workspace = true, features = ["mint", "serde"] }
@@ -34,8 +34,8 @@ idmap = { workspace = true, features = ["serde"] }
idmap-derive = { workspace = true }
input-linux = "0.7.1"
json = { version = "0.12.4", optional = true }
json5 = "0.4.1"
libc = "0.2.175"
json5 = "1.3.0"
libc = "0.2.178"
log = { workspace = true }
openxr = { git = "https://github.com/Ralith/openxrs", rev = "d0afdd3365bc1e14de28f6a3a21f457e788a702e", features = [
"linked",
@@ -76,8 +76,8 @@ image_dds = { version = "0.7.2", default-features = false, features = [
] }
interprocess = { version = "2.2.3" }
mint = "0.5.9"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
tracing = "0.1.43"
vulkano = { workspace = true }
vulkano-shaders = { workspace = true }
wgui = { path = "../wgui" }
@@ -93,16 +93,16 @@ smithay = { version = "0.7.0", default-features = false, features = [
"xwayland",
"wayland_frontend",
], optional = true }
uuid = { version = "1.18.1", features = ["v4", "fast-rng"], optional = true }
uuid = { version = "1.19.0", features = ["v4", "fast-rng"], optional = true }
wayland-client = { workspace = true, optional = true }
wayland-egl = { version = "0.32.8", optional = true }
bytes = { version = "1.10.1", optional = true }
bytes = { version = "1.11.0", optional = true }
wayvr_ipc = { git = "https://github.com/olekolek1000/wayvr-ipc.git", rev = "a72587d23f3bb8624d9aeb1f13c0a21e65350f51", default-features = false, optional = true }
rust-embed = { workspace = true }
################################
[build-dependencies]
regex = { version = "1.11.2" }
regex = { version = "1.12.2" }
[features]
default = ["openvr", "openxr", "osc", "x11", "wayland", "wayvr"]