chore: update dependencies
Includes the `calloop` timer buildup fix.
This commit is contained in:
parent
fa3ffd18da
commit
8768e46577
6 changed files with 953 additions and 774 deletions
1666
Cargo.lock
generated
1666
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
46
Cargo.toml
46
Cargo.toml
|
|
@ -10,9 +10,9 @@ rust-version = "1.90"
|
||||||
members = ["cosmic-comp-config"]
|
members = ["cosmic-comp-config"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { version = "1.0.100", features = ["backtrace"] }
|
anyhow = { version = "1.0.102", features = ["backtrace"] }
|
||||||
bitflags = "2.9.4"
|
bitflags = "2.11.0"
|
||||||
calloop = { version = "0.14.3", features = ["executor"] }
|
calloop = { version = "0.14.4", features = ["executor"] }
|
||||||
cosmic-comp-config = { path = "cosmic-comp-config", features = [
|
cosmic-comp-config = { path = "cosmic-comp-config", features = [
|
||||||
"libdisplay-info",
|
"libdisplay-info",
|
||||||
"output",
|
"output",
|
||||||
|
|
@ -21,7 +21,7 @@ cosmic-config = { git = "https://github.com/pop-os/libcosmic/", features = [
|
||||||
"calloop",
|
"calloop",
|
||||||
"macro",
|
"macro",
|
||||||
] }
|
] }
|
||||||
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", rev = "d0e95be", default-features = false, features = [
|
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", rev = "160b086", default-features = false, features = [
|
||||||
"server",
|
"server",
|
||||||
] }
|
] }
|
||||||
cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon" }
|
cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon" }
|
||||||
|
|
@ -40,54 +40,54 @@ i18n-embed = { version = "0.16", features = [
|
||||||
] }
|
] }
|
||||||
i18n-embed-fl = "0.10"
|
i18n-embed-fl = "0.10"
|
||||||
iced_tiny_skia = { git = "https://github.com/pop-os/libcosmic/" }
|
iced_tiny_skia = { git = "https://github.com/pop-os/libcosmic/" }
|
||||||
indexmap = "2.11"
|
indexmap = "2.13"
|
||||||
keyframe = "1.1.1"
|
keyframe = "1.1.1"
|
||||||
libc = "0.2.177"
|
libc = "0.2.182"
|
||||||
libcosmic = { git = "https://github.com/pop-os/libcosmic/", default-features = false }
|
libcosmic = { git = "https://github.com/pop-os/libcosmic/", default-features = false }
|
||||||
libsystemd = { version = "0.7", optional = true }
|
libsystemd = { version = "0.7", optional = true }
|
||||||
log-panics = { version = "2", features = ["with-backtrace"] }
|
log-panics = { version = "2", features = ["with-backtrace"] }
|
||||||
ordered-float = "5.1"
|
ordered-float = "5.1"
|
||||||
png = "0.18"
|
png = "0.18"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
ron = "0.11"
|
ron = "0.12"
|
||||||
rust-embed = { version = "8.7", features = ["debug-embed"] }
|
rust-embed = { version = "8.11", features = ["debug-embed"] }
|
||||||
sanitize-filename = "0.6.0"
|
sanitize-filename = "0.6.0"
|
||||||
sendfd = "0.4.4"
|
sendfd = "0.4.4"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
thiserror = "2.0.17"
|
thiserror = "2.0.18"
|
||||||
time = { version = "0.3.44", features = [
|
time = { version = "0.3.47", features = [
|
||||||
"macros",
|
"macros",
|
||||||
"formatting",
|
"formatting",
|
||||||
"local-offset",
|
"local-offset",
|
||||||
] }
|
] }
|
||||||
tiny-skia = "0.11"
|
tiny-skia = "0.11"
|
||||||
tracing = { version = "0.1.41", features = [
|
tracing = { version = "0.1.44", features = [
|
||||||
"max_level_debug",
|
"max_level_debug",
|
||||||
"release_max_level_info",
|
"release_max_level_info",
|
||||||
] }
|
] }
|
||||||
tracing-journald = "0.3.1"
|
tracing-journald = "0.3.2"
|
||||||
tracing-subscriber = { version = "0.3.20", features = [
|
tracing-subscriber = { version = "0.3.22", features = [
|
||||||
"env-filter",
|
"env-filter",
|
||||||
"tracing-log",
|
"tracing-log",
|
||||||
] }
|
] }
|
||||||
tracy-client = { version = "0.18.2", default-features = false }
|
tracy-client = { version = "0.18.4", default-features = false }
|
||||||
wayland-backend = "0.3.11"
|
wayland-backend = "0.3.12"
|
||||||
wayland-scanner = "0.31.7"
|
wayland-scanner = "0.31.8"
|
||||||
xcursor = "0.3.10"
|
xcursor = "0.3.10"
|
||||||
xdg = "^3.0"
|
xdg = "^3.0"
|
||||||
xdg-user = "0.2.1"
|
xdg-user = "0.2.1"
|
||||||
xkbcommon = "0.9"
|
xkbcommon = "0.9"
|
||||||
zbus = "5.12.0"
|
zbus = "5.14.0"
|
||||||
profiling = { version = "1.0" }
|
profiling = { version = "1.0" }
|
||||||
rustix = { version = "1.1.2", features = ["process"] }
|
rustix = { version = "1.1.4", features = ["process"] }
|
||||||
rand = "0.9.2"
|
rand = "0.10"
|
||||||
# CLI arguments
|
# CLI arguments
|
||||||
clap_lex = "0.7"
|
clap_lex = "1.0"
|
||||||
parking_lot = "0.12.5"
|
parking_lot = "0.12.5"
|
||||||
logind-zbus = { version = "5.3.2", optional = true }
|
logind-zbus = { version = "5.3.2", optional = true }
|
||||||
futures-executor = { version = "0.3.31", features = ["thread-pool"] }
|
futures-executor = { version = "0.3.32", features = ["thread-pool"] }
|
||||||
futures-util = "0.3.31"
|
futures-util = "0.3.32"
|
||||||
cgmath = "0.18.0"
|
cgmath = "0.18.0"
|
||||||
|
|
||||||
[dependencies.id_tree]
|
[dependencies.id_tree]
|
||||||
|
|
@ -148,4 +148,4 @@ cosmic-protocols = { git = "https://github.com/pop-os//cosmic-protocols", branch
|
||||||
cosmic-client-toolkit = { git = "https://github.com/pop-os//cosmic-protocols", branch = "main" }
|
cosmic-client-toolkit = { git = "https://github.com/pop-os//cosmic-protocols", branch = "main" }
|
||||||
|
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
smithay = { git = "https://github.com/smithay/smithay.git", rev = "89e58f7" }
|
smithay = { git = "https://github.com/smithay/smithay.git", rev = "da42569" }
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@ cosmic-randr-shell = { git = "https://github.com/pop-os/cosmic-randr/", optional
|
||||||
input = "0.9.1"
|
input = "0.9.1"
|
||||||
libdisplay-info = { version = "0.3.0", optional = true }
|
libdisplay-info = { version = "0.3.0", optional = true }
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
ron = { version = "0.11", optional = true }
|
ron = { version = "0.12", optional = true }
|
||||||
tracing = { version = "0.1.41", features = [
|
tracing = { version = "0.1.44", features = [
|
||||||
"max_level_debug",
|
"max_level_debug",
|
||||||
"release_max_level_info",
|
"release_max_level_info",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ use cosmic::{
|
||||||
layout::{Layout, Limits, Node},
|
layout::{Layout, Limits, Node},
|
||||||
mouse::Cursor,
|
mouse::Cursor,
|
||||||
renderer::{self, Renderer as IcedRenderer},
|
renderer::{self, Renderer as IcedRenderer},
|
||||||
text::{LineHeight, Paragraph, Renderer as TextRenderer, Shaping},
|
text::{Ellipsize, LineHeight, Paragraph, Renderer as TextRenderer, Shaping, Wrapping},
|
||||||
widget::{Tree, Widget, tree},
|
widget::{Tree, Widget, tree},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
@ -84,7 +84,8 @@ impl TabText {
|
||||||
vertical_alignment: alignment::Vertical::Center,
|
vertical_alignment: alignment::Vertical::Center,
|
||||||
shaping: Shaping::Advanced,
|
shaping: Shaping::Advanced,
|
||||||
line_height: LineHeight::default(),
|
line_height: LineHeight::default(),
|
||||||
wrapping: cosmic::iced::advanced::text::Wrapping::None,
|
wrapping: Wrapping::None,
|
||||||
|
ellipsize: Ellipsize::None,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ impl ToplevelCaptureSourceHandler for State {
|
||||||
fn toplevel_source_created(
|
fn toplevel_source_created(
|
||||||
&mut self,
|
&mut self,
|
||||||
source: ImageCaptureSource,
|
source: ImageCaptureSource,
|
||||||
toplevel: &ForeignToplevelHandle,
|
toplevel: ForeignToplevelHandle,
|
||||||
) {
|
) {
|
||||||
let data = match window_from_ext(self, toplevel) {
|
let data = match window_from_ext(self, toplevel) {
|
||||||
Some(toplevel) => ImageCaptureSourceKind::Toplevel(toplevel.clone()),
|
Some(toplevel) => ImageCaptureSourceKind::Toplevel(toplevel.clone()),
|
||||||
|
|
|
||||||
|
|
@ -637,7 +637,7 @@ pub fn window_from_handle<W: Window + 'static>(handle: ZcosmicToplevelHandleV1)
|
||||||
|
|
||||||
pub fn window_from_ext<'a, W: Window + 'static, D>(
|
pub fn window_from_ext<'a, W: Window + 'static, D>(
|
||||||
state: &'a D,
|
state: &'a D,
|
||||||
handle: &ForeignToplevelHandle,
|
handle: ForeignToplevelHandle,
|
||||||
) -> Option<&'a W>
|
) -> Option<&'a W>
|
||||||
where
|
where
|
||||||
D: ToplevelInfoHandler<Window = W>,
|
D: ToplevelInfoHandler<Window = W>,
|
||||||
|
|
@ -662,7 +662,7 @@ where
|
||||||
D: ToplevelInfoHandler<Window = W>,
|
D: ToplevelInfoHandler<Window = W>,
|
||||||
{
|
{
|
||||||
let handle = ForeignToplevelHandle::from_resource(foreign_toplevel)?;
|
let handle = ForeignToplevelHandle::from_resource(foreign_toplevel)?;
|
||||||
window_from_ext(state, &handle)
|
window_from_ext(state, handle)
|
||||||
}
|
}
|
||||||
|
|
||||||
macro_rules! delegate_toplevel_info {
|
macro_rules! delegate_toplevel_info {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue