mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-16 15:27:46 +00:00
cargo upgrade
This excludes: - `tokio` (node ping gets broken) - `egui` and friends (way too much layout code to rewrite)
This commit is contained in:
parent
2457f9fed2
commit
65d1cd4115
2 changed files with 706 additions and 398 deletions
1058
Cargo.lock
generated
1058
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
46
Cargo.toml
46
Cargo.toml
|
@ -26,12 +26,12 @@ default = []
|
|||
distro = []
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.65"
|
||||
arti-client = { version = "0.7.0", features = ["static"] }
|
||||
arti-hyper = "0.7.0"
|
||||
benri = "0.1.6"
|
||||
bytes = "1.2.1"
|
||||
dirs = "4.0.0"
|
||||
anyhow = "1.0.71"
|
||||
arti-client = { version = "0.9.0", features = ["static"] }
|
||||
arti-hyper = "0.9.0"
|
||||
benri = "0.1.12"
|
||||
bytes = "1.4.0"
|
||||
dirs = "5.0.1"
|
||||
#--------------------------------------------------------------------------------
|
||||
egui = "0.19.0"
|
||||
egui_extras = { version = "0.19.0", features = ["image"] }
|
||||
|
@ -50,28 +50,28 @@ egui_extras = { version = "0.19.0", features = ["image"] }
|
|||
#egui_glow = { path = "external/egui/crates/egui_glow"}
|
||||
#egui_extras = { path = "external/egui/crates/egui_extras", features = ["image"] }
|
||||
#--------------------------------------------------------------------------------
|
||||
env_logger = "0.9.1"
|
||||
figment = { version = "0.10.8", features = ["toml"] }
|
||||
hyper = "0.14.20"
|
||||
env_logger = "0.10.0"
|
||||
figment = { version = "0.10.9", features = ["toml"] }
|
||||
hyper = "0.14.26"
|
||||
hyper-tls = "0.5.0"
|
||||
image = { version = "0.24.4", features = ["png"] }
|
||||
log = "0.4.17"
|
||||
num-format = { version = "0.4.3", default-features = false }
|
||||
once_cell = "1.17.1"
|
||||
portable-pty = "0.7.0"
|
||||
image = { version = "0.24.6", features = ["png"] }
|
||||
log = "0.4.18"
|
||||
num-format = { version = "0.4.4", default-features = false }
|
||||
once_cell = "1.17.2"
|
||||
portable-pty = "0.8.1"
|
||||
rand = "0.8.5"
|
||||
regex = { version = "1.6.0", default-features = false, features = ["perf"] }
|
||||
rfd = "0.10.0"
|
||||
serde = { version = "1.0.145", features = ["rc", "derive"] }
|
||||
regex = { version = "1.8.3", default-features = false, features = ["perf"] }
|
||||
rfd = "0.11.4"
|
||||
serde = { version = "1.0.163", features = ["rc", "derive"] }
|
||||
serde_json = "1.0"
|
||||
sysinfo = { version = "0.27.0", default-features = false }
|
||||
sysinfo = { version = "0.29.0", default-features = false }
|
||||
tls-api = "0.9.0"
|
||||
tls-api-native-tls = "0.9.0"
|
||||
tokio = { version = "1.21.2", features = ["rt", "time", "macros", "process"] }
|
||||
toml = { version = "0.5.9", features = ["preserve_order"] }
|
||||
tor-rtcompat = "0.7.0"
|
||||
walkdir = "2.3.2"
|
||||
zeroize = "1.5.7"
|
||||
toml = { version = "0.7.4", features = ["preserve_order"] }
|
||||
tor-rtcompat = "0.9.0"
|
||||
walkdir = "2.3.3"
|
||||
zeroize = "1.6.0"
|
||||
strsim = "0.10.0"
|
||||
|
||||
# Unix dependencies
|
||||
|
@ -84,7 +84,7 @@ eframe = { version = "0.19.0", default-features = false, features = ["glow"] }
|
|||
|
||||
# Windows dependencies
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
zip = "0.6.3"
|
||||
zip = "0.6.6"
|
||||
is_elevated = "0.1.2"
|
||||
## [wgpu] backend for Windows.
|
||||
eframe = { version = "0.19.0", default-features = false, features = ["wgpu"] }
|
||||
|
|
Loading…
Reference in a new issue