update all deps
This commit is contained in:
1667
Cargo.lock
generated
1667
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
12
Cargo.toml
12
Cargo.toml
@@ -22,13 +22,13 @@ resolver = "3"
|
|||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
anyhow = "1.0.100"
|
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 = "0.2.2"
|
||||||
idmap-derive = "0.2.2"
|
idmap-derive = "0.2.22"
|
||||||
log = "0.4.28"
|
log = "0.4.29"
|
||||||
regex = "1.11.3"
|
regex = "1.12.2"
|
||||||
rust-embed = "8.7.2"
|
rust-embed = "8.9.0"
|
||||||
slotmap = "1.0.7"
|
slotmap = "1.1.1"
|
||||||
vulkano = { version = "0.35.2", default-features = false, features = [
|
vulkano = { version = "0.35.2", default-features = false, features = [
|
||||||
"macros",
|
"macros",
|
||||||
] }
|
] }
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ glam = { workspace = true, features = ["mint", "serde"] }
|
|||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
rust-embed = { workspace = true }
|
rust-embed = { workspace = true }
|
||||||
chrono = "0.4.42"
|
chrono = "0.4.42"
|
||||||
gio = "0.21.2"
|
gio = "0.21.5"
|
||||||
gtk = "0.18.2"
|
gtk = "0.18.2"
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { version = "1.0.228", features = ["derive"] }
|
||||||
serde_json = "1.0.145"
|
serde_json = "1.0.145"
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ description = "wgui library testing using winit backend"
|
|||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
glam = { workspace = true }
|
glam = { workspace = true }
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
rust-embed = "8.7.2"
|
rust-embed = "8.9.0"
|
||||||
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
|
||||||
wgui = { path = "../wgui/" }
|
wgui = { path = "../wgui/" }
|
||||||
winit = "0.30.12"
|
winit = "0.30.12"
|
||||||
vulkano = { workspace = true }
|
vulkano = { workspace = true }
|
||||||
|
|||||||
@@ -5,10 +5,10 @@ edition = "2024"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
cosmic-text = "0.14.2"
|
cosmic-text = "0.15.0"
|
||||||
etagere = "0.2.15"
|
etagere = "0.2.15"
|
||||||
glam = { workspace = true }
|
glam = { workspace = true }
|
||||||
image = { version = "0.25.8", default-features = false, features = [
|
image = { version = "0.25.9", default-features = false, features = [
|
||||||
"gif",
|
"gif",
|
||||||
"jpeg",
|
"jpeg",
|
||||||
"png",
|
"png",
|
||||||
@@ -16,17 +16,17 @@ image = { version = "0.25.8", default-features = false, features = [
|
|||||||
"webp",
|
"webp",
|
||||||
] }
|
] }
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
lru = "0.16.1"
|
lru = "0.16.2"
|
||||||
ouroboros = "0.18.5"
|
ouroboros = "0.18.5"
|
||||||
parking_lot = "0.12.4"
|
parking_lot = "0.12.5"
|
||||||
regex = { workspace = true }
|
regex = { workspace = true }
|
||||||
resvg = { version = "0.45.1", default-features = false }
|
resvg = { version = "0.45.1", default-features = false }
|
||||||
roxmltree = "0.20.0"
|
roxmltree = "0.21.1"
|
||||||
rustc-hash = "2.1.1"
|
rustc-hash = "2.1.1"
|
||||||
serde_json = "1.0.145"
|
serde_json = "1.0.145"
|
||||||
slotmap = { workspace = true }
|
slotmap = { workspace = true }
|
||||||
smallvec = "1.15.1"
|
smallvec = "1.15.1"
|
||||||
taffy = "0.9.1"
|
taffy = "0.9.2"
|
||||||
vulkano = { workspace = true }
|
vulkano = { workspace = true }
|
||||||
vulkano-shaders = { workspace = true }
|
vulkano-shaders = { workspace = true }
|
||||||
rust-embed = { workspace = true }
|
rust-embed = { workspace = true }
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ use crate::{
|
|||||||
globals::Globals,
|
globals::Globals,
|
||||||
layout::WidgetID,
|
layout::WidgetID,
|
||||||
renderer_vk::text::{
|
renderer_vk::text::{
|
||||||
custom_glyph::{CustomGlyph, CustomGlyphData},
|
|
||||||
DEFAULT_METRICS,
|
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);
|
let attrs = Attrs::new().color(Color::rgb(255, 0, 255)).weight(Weight::BOLD);
|
||||||
|
|
||||||
// set text last in order to avoid expensive re-shaping
|
// 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(
|
state.primitives.push(drawing::RenderPrimitive::Text(
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ ashpd = { version = "0.12.0", default-features = false, features = [
|
|||||||
], optional = true }
|
], optional = true }
|
||||||
drm-fourcc = "2.2.0"
|
drm-fourcc = "2.2.0"
|
||||||
idmap = { workspace = true }
|
idmap = { workspace = true }
|
||||||
libc = "0.2.175"
|
libc = "0.2.178"
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
pipewire = { git = "https://gitlab.freedesktop.org/galister/pipewire-rs.git", ref = "ba32202c3c391004c3bb533b58fa75a50e47ff57", features = [
|
pipewire = { git = "https://gitlab.freedesktop.org/galister/pipewire-rs.git", ref = "ba32202c3c391004c3bb533b58fa75a50e47ff57", features = [
|
||||||
"v0_3_33",
|
"v0_3_33",
|
||||||
|
|||||||
@@ -24,9 +24,9 @@ anyhow = { workspace = true }
|
|||||||
ash = "^0.38.0" # must match vulkano
|
ash = "^0.38.0" # must match vulkano
|
||||||
chrono = "0.4.42"
|
chrono = "0.4.42"
|
||||||
chrono-tz = "0.10.4"
|
chrono-tz = "0.10.4"
|
||||||
clap = { version = "4.5.48", features = ["derive"] }
|
clap = { version = "4.5.53", features = ["derive"] }
|
||||||
config = "0.15.16"
|
config = "0.15.19"
|
||||||
ctrlc = { version = "3.5.0", features = ["termination"] }
|
ctrlc = { version = "3.5.1", features = ["termination"] }
|
||||||
dbus = { version = "0.9.9" }
|
dbus = { version = "0.9.9" }
|
||||||
futures = "0.3.31"
|
futures = "0.3.31"
|
||||||
glam = { workspace = true, features = ["mint", "serde"] }
|
glam = { workspace = true, features = ["mint", "serde"] }
|
||||||
@@ -34,8 +34,8 @@ idmap = { workspace = true, features = ["serde"] }
|
|||||||
idmap-derive = { workspace = true }
|
idmap-derive = { workspace = true }
|
||||||
input-linux = "0.7.1"
|
input-linux = "0.7.1"
|
||||||
json = { version = "0.12.4", optional = true }
|
json = { version = "0.12.4", optional = true }
|
||||||
json5 = "0.4.1"
|
json5 = "1.3.0"
|
||||||
libc = "0.2.175"
|
libc = "0.2.178"
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
openxr = { git = "https://github.com/Ralith/openxrs", rev = "d0afdd3365bc1e14de28f6a3a21f457e788a702e", features = [
|
openxr = { git = "https://github.com/Ralith/openxrs", rev = "d0afdd3365bc1e14de28f6a3a21f457e788a702e", features = [
|
||||||
"linked",
|
"linked",
|
||||||
@@ -76,8 +76,8 @@ image_dds = { version = "0.7.2", default-features = false, features = [
|
|||||||
] }
|
] }
|
||||||
interprocess = { version = "2.2.3" }
|
interprocess = { version = "2.2.3" }
|
||||||
mint = "0.5.9"
|
mint = "0.5.9"
|
||||||
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
|
||||||
tracing = "0.1.41"
|
tracing = "0.1.43"
|
||||||
vulkano = { workspace = true }
|
vulkano = { workspace = true }
|
||||||
vulkano-shaders = { workspace = true }
|
vulkano-shaders = { workspace = true }
|
||||||
wgui = { path = "../wgui" }
|
wgui = { path = "../wgui" }
|
||||||
@@ -93,16 +93,16 @@ smithay = { version = "0.7.0", default-features = false, features = [
|
|||||||
"xwayland",
|
"xwayland",
|
||||||
"wayland_frontend",
|
"wayland_frontend",
|
||||||
], optional = true }
|
], 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-client = { workspace = true, optional = true }
|
||||||
wayland-egl = { version = "0.32.8", 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 }
|
wayvr_ipc = { git = "https://github.com/olekolek1000/wayvr-ipc.git", rev = "a72587d23f3bb8624d9aeb1f13c0a21e65350f51", default-features = false, optional = true }
|
||||||
rust-embed = { workspace = true }
|
rust-embed = { workspace = true }
|
||||||
################################
|
################################
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
regex = { version = "1.11.2" }
|
regex = { version = "1.12.2" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["openvr", "openxr", "osc", "x11", "wayland", "wayvr"]
|
default = ["openvr", "openxr", "osc", "x11", "wayland", "wayvr"]
|
||||||
|
|||||||
Reference in New Issue
Block a user