mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-16 15:27:46 +00:00
feat: bump deps, fix breaking change of one.
This commit is contained in:
parent
3b3d6f1d46
commit
c7ad80ff03
3 changed files with 496 additions and 675 deletions
1150
Cargo.lock
generated
1150
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
20
Cargo.toml
20
Cargo.toml
|
@ -30,9 +30,9 @@ distro = []
|
|||
|
||||
[dependencies]
|
||||
clap = {version="4.5", features=["cargo", "derive"]}
|
||||
anyhow = "1.0.89"
|
||||
anyhow = "1.0.91"
|
||||
benri = "0.1.12"
|
||||
bytes = "1.7.2"
|
||||
bytes = "1.8.0"
|
||||
dirs = "5.0.1"
|
||||
#--------------------------------------------------------------------------------
|
||||
egui = "0.29.1"
|
||||
|
@ -50,20 +50,20 @@ egui_extras = {version="0.29.1", features = ["image"] }
|
|||
#--------------------------------------------------------------------------------
|
||||
env_logger = "0.11.5"
|
||||
figment = { version = "0.10.19", features = ["toml"] }
|
||||
reqwest = {version = "0.12.8", default-features=false, features=["json", "rustls-tls"]}
|
||||
image = { version = "0.25.2", features = ["png"] }
|
||||
reqwest = {version = "0.12.9", default-features=false, features=["json", "rustls-tls"]}
|
||||
image = { version = "0.25.4", features = ["png"] }
|
||||
log = "0.4.22"
|
||||
num-format = { version = "0.4.4", default-features = false }
|
||||
once_cell = "1.20.2"
|
||||
portable-pty = "0.8.1"
|
||||
rand = "0.8.5"
|
||||
regex = { version = "1.11.0", default-features = false, features = ["perf"] }
|
||||
regex = { version = "1.11.1", default-features = false, features = ["perf"] }
|
||||
rfd = "0.15.0"
|
||||
serde = { version = "1.0.210", features = ["rc", "derive"] }
|
||||
serde_json = "1.0.128"
|
||||
sysinfo = { version = "0.31.4", default-features = false, features=["system"] }
|
||||
serde = { version = "1.0.214", features = ["rc", "derive"] }
|
||||
serde_json = "1.0.132"
|
||||
sysinfo = { version = "0.32.0", default-features = false, features=["system"] }
|
||||
# tls-api = "0.9.0"
|
||||
tokio = { version = "1.40.0", features = ["rt", "time", "macros", "process", "rt-multi-thread"] }
|
||||
tokio = { version = "1.41.0", features = ["rt", "time", "macros", "process", "rt-multi-thread"] }
|
||||
toml = { version = "0.8.19", features = ["preserve_order"] }
|
||||
walkdir = "2.5.0"
|
||||
zeroize = "1.8.1"
|
||||
|
@ -108,7 +108,7 @@ egui = {version="0.29.1", features=["callstack"]}
|
|||
# glow start on windows but not wgpu
|
||||
# need the same version that eframe is using with egui_wgpu
|
||||
# feature angle to enable support for old cpu on Windows
|
||||
wgpu = {version = "22.1.0", features=["angle"]}
|
||||
wgpu = {version = "23.0.0", features=["angle"]}
|
||||
zip = "2.2.0"
|
||||
is_elevated = "0.1.2"
|
||||
|
||||
|
|
|
@ -542,6 +542,7 @@ impl Helper {
|
|||
debug!("Helper | Sysinfo refresh (1/3) ... [cpu]");
|
||||
sysinfo.refresh_processes_specifics(
|
||||
sysinfo::ProcessesToUpdate::All,
|
||||
false,
|
||||
sysinfo_processes,
|
||||
);
|
||||
debug!("Helper | Sysinfo refresh (2/3) ... [processes]");
|
||||
|
|
Loading…
Reference in a new issue