chore(appearance): disable wrapping for style text
Also updates all workspace members to Rust 2024, removes `once_cell` and updates dependencies.
This commit is contained in:
parent
f536038489
commit
a0f7b31d89
14 changed files with 284 additions and 341 deletions
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "cosmic-settings-system"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
rust-version.workspace = true
|
||||
|
||||
|
|
@ -11,9 +11,9 @@ rust-version.workspace = true
|
|||
byte-unit = "5.1.6"
|
||||
const_format = "0.2.34"
|
||||
concat-in-place = "1.1.0"
|
||||
sysinfo = "0.31.4"
|
||||
memchr = "2.7.4"
|
||||
sysinfo = "0.36.1"
|
||||
memchr = "2.7.5"
|
||||
|
||||
[dependencies.bumpalo]
|
||||
version = "3.17.0"
|
||||
version = "3.19.0"
|
||||
features = ["collections"]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "cosmic-settings-wallpaper"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
rust-version.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
@ -10,7 +10,7 @@ rust-version.workspace = true
|
|||
cosmic-bg-config = { workspace = true }
|
||||
cosmic-config = { workspace = true }
|
||||
cosmic-randr-shell = { workspace = true }
|
||||
dirs = "5.0.1"
|
||||
dirs = "6.0.0"
|
||||
eyre = "0.6.12"
|
||||
# Upstream version 5.0.0 has compilation error on Redox's toolchain
|
||||
fast_image_resize = { git = "https://github.com/jackpot51/fast_image_resize.git", features = [
|
||||
|
|
@ -19,9 +19,9 @@ fast_image_resize = { git = "https://github.com/jackpot51/fast_image_resize.git"
|
|||
freedesktop-icons = { package = "cosmic-freedesktop-icons", git = "https://github.com/pop-os/freedesktop-icons" }
|
||||
futures-lite = "2.6.0"
|
||||
futures-util = "0.3.31"
|
||||
image = "0.25.5"
|
||||
infer = "0.16.0"
|
||||
jxl-oxide = "0.11.3"
|
||||
tokio = { version = "1.44.1", features = ["sync"] }
|
||||
image = "0.25.6"
|
||||
infer = "0.19.0"
|
||||
jxl-oxide = "0.12.2"
|
||||
tokio = { version = "1.47.0", features = ["sync"] }
|
||||
tracing = "0.1.41"
|
||||
walkdir = "=2.5.0"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
pub use cosmic_bg_config::{Color, Config, Entry, Gradient, ScalingMode, Source};
|
||||
use eyre::{eyre, OptionExt};
|
||||
use eyre::{OptionExt, eyre};
|
||||
use fast_image_resize::SrcCropping;
|
||||
use futures_lite::Stream;
|
||||
use futures_util::StreamExt;
|
||||
|
|
@ -9,7 +9,7 @@ use jxl_oxide::{EnumColourEncoding, JxlImage, PixelFormat};
|
|||
use std::os::unix::ffi::OsStrExt;
|
||||
use std::{
|
||||
borrow::Cow,
|
||||
collections::{hash_map::DefaultHasher, HashMap},
|
||||
collections::{HashMap, hash_map::DefaultHasher},
|
||||
hash::{Hash, Hasher},
|
||||
io::Read,
|
||||
path::{Path, PathBuf},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue