chore: bump rust deps

Bump rust dependencies and apply cargo fmt/clippy fixes
This commit is contained in:
Kirill
2022-11-17 23:41:08 +03:00
parent 6206b6762a
commit 5bd4f3ff6e
15 changed files with 750 additions and 782 deletions

View File

@@ -12,33 +12,33 @@ rust-version = "1.57"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.0.0-rc.8", features = [] }
tauri-build = { version = "1.2.0", features = [] }
cc = "1.0"
[target.'cfg(windows)'.dependencies]
is_elevated = "0.1.2"
registry = "1.2.1"
registry = "1.2.2"
[target.'cfg(unix)'.dependencies]
sudo = "0.6.0"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.0.6", features = ["api-all"] }
tauri = { version = "1.2.0", features = ["api-all"] }
# Access system process info.
sysinfo = "0.24.6"
sysinfo = "0.26.7"
# ZIP-archive library.
zip-extract = "0.1.1"
unrar = "0.4.4"
zip = "0.6.2"
zip = "0.6.3"
# For creating a "global" downloads list.
once_cell = "1.13.0"
once_cell = "1.16.0"
# Program opener.
open = "3.0.2"
open = "3.0.3"
duct = "0.13.5"
# Serialization.
@@ -46,15 +46,15 @@ serde_json = "1"
# Dependencies for the HTTP(S) proxy.
http = "0.2"
hudsucker = "0.17.2"
tracing = "0.1.21"
tokio-rustls = "0.23.0"
tokio-tungstenite = "0.17.0"
tokio = { version = "1.18.2", features = ["signal"] }
rustls-pemfile = "1.0.0"
reqwest = { version = "0.11.3", features = ["stream"] }
futures-util = "0.3.14"
rcgen = { version = "0.9", features = ["x509-parser"] }
hudsucker = "0.18.0"
tracing = "0.1.37"
tokio-rustls = "0.23.4"
tokio-tungstenite = "0.17.2"
tokio = { version = "1.21.2", features = ["signal"] }
rustls-pemfile = "1.0.1"
reqwest = { version = "0.11.13", features = ["stream"] }
futures-util = "0.3.25"
rcgen = { version = "0.10", features = ["x509-parser"] }
# metadata stuff
regex = "1"