mirror of
https://github.com/hinto-janai/gupax.git
synced 2024-11-16 17:27:37 +00:00
cargo upgrade --incompatible
This commit is contained in:
parent
abaaf72e4d
commit
144fdde052
2 changed files with 2559 additions and 1581 deletions
4092
Cargo.lock
generated
4092
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
48
Cargo.toml
48
Cargo.toml
|
@ -26,11 +26,11 @@ default = []
|
|||
distro = []
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.71"
|
||||
arti-client = { version = "0.9.0", features = ["static"] }
|
||||
arti-hyper = "0.9.0"
|
||||
anyhow = "1.0.83"
|
||||
arti-client = { version = "0.18.0", features = ["static"] }
|
||||
arti-hyper = "0.18.0"
|
||||
benri = "0.1.12"
|
||||
bytes = "1.4.0"
|
||||
bytes = "1.6.0"
|
||||
dirs = "5.0.1"
|
||||
#--------------------------------------------------------------------------------
|
||||
egui = "0.27.2"
|
||||
|
@ -56,33 +56,33 @@ eframe = { version = "0.27.2", features = ["wgpu"] }
|
|||
#egui_glow = { path = "external/egui/crates/egui_glow"}
|
||||
#egui_extras = { path = "external/egui/crates/egui_extras", features = ["image"] }
|
||||
#--------------------------------------------------------------------------------
|
||||
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.6", features = ["png"] }
|
||||
log = "0.4.18"
|
||||
env_logger = "0.11.3"
|
||||
figment = { version = "0.10.18", features = ["toml"] }
|
||||
hyper = "1.3.1"
|
||||
hyper-tls = "0.6.0"
|
||||
image = { version = "0.25.1", features = ["png"] }
|
||||
log = "0.4.21"
|
||||
num-format = { version = "0.4.4", default-features = false }
|
||||
once_cell = "1.17.2"
|
||||
once_cell = "1.19.0"
|
||||
portable-pty = "0.8.1"
|
||||
rand = "0.8.5"
|
||||
regex = { version = "1.8.3", default-features = false, features = ["perf"] }
|
||||
rfd = "0.11.4"
|
||||
serde = { version = "1.0.163", features = ["rc", "derive"] }
|
||||
regex = { version = "1.10.4", default-features = false, features = ["perf"] }
|
||||
rfd = "0.14.1"
|
||||
serde = { version = "1.0.201", features = ["rc", "derive"] }
|
||||
serde_json = "1.0"
|
||||
sysinfo = { version = "0.29.0", default-features = false }
|
||||
sysinfo = { version = "0.30.12", default-features = false }
|
||||
tls-api = "0.9.0"
|
||||
tokio = { version = "1.21.2", features = ["rt", "time", "macros", "process"] }
|
||||
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"
|
||||
tokio = { version = "1.37.0", features = ["rt", "time", "macros", "process"] }
|
||||
toml = { version = "0.8.12", features = ["preserve_order"] }
|
||||
tor-rtcompat = "0.18.0"
|
||||
walkdir = "2.5.0"
|
||||
zeroize = "1.7.0"
|
||||
strsim = "0.11.1"
|
||||
strip-ansi-escapes = "0.2.0"
|
||||
|
||||
# Unix dependencies
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
tar = "0.4.38"
|
||||
tar = "0.4.40"
|
||||
flate2 = "1.0"
|
||||
sudo = "0.6.0"
|
||||
|
||||
|
@ -106,9 +106,9 @@ tls-api-native-tls = "0.9.0"
|
|||
|
||||
# Windows dependencies
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
zip = "0.6.6"
|
||||
zip = "1.2.2"
|
||||
is_elevated = "0.1.2"
|
||||
wgpu = { version = "0.19.4", features = ["angle"] }
|
||||
wgpu = { version = "0.20.0", features = ["angle"] }
|
||||
|
||||
# For Windows build (icon)
|
||||
[target.'cfg(windows)'.build-dependencies]
|
||||
|
|
Loading…
Reference in a new issue