mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-22 14:49:21 +00:00
feat: update deps
This commit is contained in:
parent
d747441f6b
commit
855a1b3c9d
2 changed files with 353 additions and 256 deletions
591
Cargo.lock
generated
591
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
18
Cargo.toml
18
Cargo.toml
|
@ -29,7 +29,7 @@ bundle = []
|
|||
distro = []
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.82"
|
||||
anyhow = "1.0.85"
|
||||
benri = "0.1.12"
|
||||
bytes = "1.6.0"
|
||||
dirs = "5.0.1"
|
||||
|
@ -48,7 +48,7 @@ egui_extras = { version = "0.27.2", features = ["image"] }
|
|||
|
||||
#--------------------------------------------------------------------------------
|
||||
env_logger = "0.11.3"
|
||||
figment = { version = "0.10.18", features = ["toml"] }
|
||||
figment = { version = "0.10.19", features = ["toml"] }
|
||||
reqwest = {version = "0.12.4", default-features=false, features=["json", "rustls-tls"]}
|
||||
image = { version = "0.25.1", features = ["png"] }
|
||||
log = "0.4.21"
|
||||
|
@ -58,12 +58,12 @@ portable-pty = "0.8.1"
|
|||
rand = "0.8.5"
|
||||
regex = { version = "1.10.4", default-features = false, features = ["perf"] }
|
||||
rfd = "0.14.1"
|
||||
serde = { version = "1.0.198", features = ["rc", "derive"] }
|
||||
serde_json = "1.0.116"
|
||||
sysinfo = { version = "0.30.11", default-features = false }
|
||||
serde = { version = "1.0.202", features = ["rc", "derive"] }
|
||||
serde_json = "1.0.117"
|
||||
sysinfo = { version = "0.30.12", default-features = false }
|
||||
# tls-api = "0.9.0"
|
||||
tokio = { version = "1.37.0", features = ["rt", "time", "macros", "process", "rt-multi-thread"] }
|
||||
toml = { version = "0.8.12", features = ["preserve_order"] }
|
||||
toml = { version = "0.8.13", features = ["preserve_order"] }
|
||||
walkdir = "2.5.0"
|
||||
zeroize = "1.7.0"
|
||||
strsim = "0.11.1"
|
||||
|
@ -95,7 +95,7 @@ eframe = { version = "0.27.2", features = ["wgpu"] }
|
|||
# openssl = { version = "0.10", features = ["vendored"] }
|
||||
# We don't even use `xz` in `flate2` but this gets dynamically
|
||||
# linked as well which causes problems, so statically link it.
|
||||
lzma-sys = { version = "0.1.20", features = ["static"] }
|
||||
lzma-sys = { version = "0.1", features = ["static"] }
|
||||
[dev-dependencies]
|
||||
egui = {version = "0.27.2", features=["callstack"]}
|
||||
|
||||
|
@ -106,8 +106,10 @@ egui = {version = "0.27.2", features=["callstack"]}
|
|||
[target.'cfg(windows)'.dependencies]
|
||||
# glow start on windows but not wgpu
|
||||
eframe = { version = "0.27.2", features = ["wgpu"] }
|
||||
# need the same version that eframe is using with egui_wgpu
|
||||
# feature angle to enable support for old cpu on Windows
|
||||
wgpu = {version = "0.19.4", features=["angle"]}
|
||||
zip = "1.1.1"
|
||||
zip = "1.3.0"
|
||||
is_elevated = "0.1.2"
|
||||
|
||||
# For Windows build (icon)
|
||||
|
|
Loading…
Reference in a new issue