feat: update deps and egui from commit to release

This commit is contained in:
Cyrix126 2024-09-30 10:36:41 +02:00
parent bcad260b9f
commit 6f243cf585
2 changed files with 269 additions and 312 deletions

560
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -30,13 +30,13 @@ distro = []
[dependencies] [dependencies]
clap = {version="4.5", features=["cargo", "derive"]} clap = {version="4.5", features=["cargo", "derive"]}
anyhow = "1.0.87" anyhow = "1.0.89"
benri = "0.1.12" benri = "0.1.12"
bytes = "1.7.1" bytes = "1.7.2"
dirs = "5.0.1" dirs = "5.0.1"
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
egui = {git="https://github.com/emilk/egui", rev="6b7f431"} egui = "0.29.0"
egui_extras = {git="https://github.com/emilk/egui", rev="6b7f431", features = ["image"] } egui_extras = {version="0.29.0", features = ["image"] }
## 2023-12-28: https://github.com/hinto-janai/gupax/issues/68 ## 2023-12-28: https://github.com/hinto-janai/gupax/issues/68
## ##
## 2024-03-18: Both `glow` and `wgpu` seem to crash: ## 2024-03-18: Both `glow` and `wgpu` seem to crash:
@ -54,11 +54,11 @@ reqwest = {version = "0.12.7", default-features=false, features=["json", "rustls
image = { version = "0.25.2", features = ["png"] } image = { version = "0.25.2", features = ["png"] }
log = "0.4.22" log = "0.4.22"
num-format = { version = "0.4.4", default-features = false } num-format = { version = "0.4.4", default-features = false }
once_cell = "1.19.0" once_cell = "1.20.1"
portable-pty = "0.8.1" portable-pty = "0.8.1"
rand = "0.8.5" rand = "0.8.5"
regex = { version = "1.10.6", default-features = false, features = ["perf"] } regex = { version = "1.11.0", default-features = false, features = ["perf"] }
rfd = "0.14.1" rfd = "0.15.0"
serde = { version = "1.0.210", features = ["rc", "derive"] } serde = { version = "1.0.210", features = ["rc", "derive"] }
serde_json = "1.0.128" serde_json = "1.0.128"
sysinfo = { version = "0.31.4", default-features = false, features=["system"] } sysinfo = { version = "0.31.4", default-features = false, features=["system"] }
@ -77,11 +77,10 @@ enclose = "1.2.0"
bounded-vec-deque = {version="0.1.1", default-features=false} bounded-vec-deque = {version="0.1.1", default-features=false}
cfg-if = "1.0" cfg-if = "1.0"
flexi_logger = "0.29" flexi_logger = "0.29"
# eframe = { version = "0.28.1", features = ["wgpu"] } eframe = {version="0.29.0", features=["wgpu"]}
eframe = {git="https://github.com/emilk/egui", rev="6b7f431", features=["wgpu"]}
# Unix dependencies # Unix dependencies
[target.'cfg(unix)'.dependencies] [target.'cfg(unix)'.dependencies]
tar = "0.4.41" tar = "0.4.42"
flate2 = "1.0" flate2 = "1.0"
sudo = "0.6.0" sudo = "0.6.0"
# macOS # macOS
@ -99,7 +98,7 @@ sudo = "0.6.0"
# linked as well which causes problems, so statically link it. # linked as well which causes problems, so statically link it.
lzma-sys = { version = "0.1", features = ["static"] } lzma-sys = { version = "0.1", features = ["static"] }
[dev-dependencies] [dev-dependencies]
egui = {git="https://github.com/emilk/egui", rev="6b7f431", features=["callstack"]} egui = {version="0.29.0", features=["callstack"]}
# [target.'cfg(not(target_os = "macos"))'.dependencies] # [target.'cfg(not(target_os = "macos"))'.dependencies]
# tls-api-native-tls = "0.9.0" # tls-api-native-tls = "0.9.0"