aboutsummaryrefslogtreecommitdiff
path: root/src-tauri
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-02-25 00:26:59 +0100
committerGitHub <noreply@github.com>2024-02-25 00:26:59 +0100
commitc9f0edaf7968e0d586b9b5f5f63187f23108a994 (patch)
tree732eacb901247b3577fe77ea101e15f5d7ff8a04 /src-tauri
parent303af92ee9acfa7f176d20d07289e0aa159fd84c (diff)
downloadFlightCore-c9f0edaf7968e0d586b9b5f5f63187f23108a994.tar.gz
FlightCore-c9f0edaf7968e0d586b9b5f5f63187f23108a994.zip
chore: bump sysinfo from 0.29.11 to 0.30.5 in /src-tauri (#742)
* chore: bump sysinfo from 0.29.11 to 0.30.5 in /src-tauri Bumps [sysinfo](https://github.com/GuillaumeGomez/sysinfo) from 0.29.11 to 0.30.5. - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix: Remove now unneeded imports The current imports seem to no longer be needed and don't exist anymore anyway --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: GeckoEidechse <gecko.eidechse+git@pm.me>
Diffstat (limited to 'src-tauri')
-rw-r--r--src-tauri/Cargo.lock35
-rw-r--r--src-tauri/Cargo.toml2
-rw-r--r--src-tauri/src/util.rs1
3 files changed, 27 insertions, 11 deletions
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock
index 8badd563..66d6b669 100644
--- a/src-tauri/Cargo.lock
+++ b/src-tauri/Cargo.lock
@@ -3372,9 +3372,9 @@ checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
[[package]]
name = "rayon"
-version = "1.7.0"
+version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
+checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051"
dependencies = [
"either",
"rayon-core",
@@ -3382,14 +3382,12 @@ dependencies = [
[[package]]
name = "rayon-core"
-version = "1.11.0"
+version = "1.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
+checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
dependencies = [
- "crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
- "num_cpus",
]
[[package]]
@@ -4389,9 +4387,9 @@ dependencies = [
[[package]]
name = "sysinfo"
-version = "0.29.11"
+version = "0.30.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cd727fc423c2060f6c92d9534cef765c65a6ed3f428a03d7def74a8c4348e666"
+checksum = "1fb4f3438c8f6389c864e61221cbc97e9bca98b4daf39a5beb7bea660f528bb2"
dependencies = [
"cfg-if",
"core-foundation-sys",
@@ -4399,7 +4397,7 @@ dependencies = [
"ntapi",
"once_cell",
"rayon",
- "winapi",
+ "windows 0.52.0",
]
[[package]]
@@ -5601,6 +5599,16 @@ dependencies = [
]
[[package]]
+name = "windows"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
+dependencies = [
+ "windows-core",
+ "windows-targets 0.52.0",
+]
+
+[[package]]
name = "windows-bindgen"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -5611,6 +5619,15 @@ dependencies = [
]
[[package]]
+name = "windows-core"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
+dependencies = [
+ "windows-targets 0.52.0",
+]
+
+[[package]]
name = "windows-implement"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
index b17a3d67..98951345 100644
--- a/src-tauri/Cargo.toml
+++ b/src-tauri/Cargo.toml
@@ -39,7 +39,7 @@ zip = "0.6.2"
# Regex
regex = "1.10"
# Read out running application process names
-sysinfo = "0.29.11"
+sysinfo = "0.30.5"
# HTTP requests
reqwest = { version = "0.11", features = ["blocking"] }
# Persistent store for settings
diff --git a/src-tauri/src/util.rs b/src-tauri/src/util.rs
index ad09eec2..1d355997 100644
--- a/src-tauri/src/util.rs
+++ b/src-tauri/src/util.rs
@@ -2,7 +2,6 @@
use anyhow::{Context, Result};
use serde::{Deserialize, Serialize};
-use sysinfo::{ProcessExt, SystemExt};
use zip::ZipArchive;
use crate::constants::{APP_USER_AGENT, MASTER_SERVER_URL, SERVER_BROWSER_ENDPOINT};