summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2022-10-07 19:15:11 -0400
committerGitHub <noreply@github.com>2022-10-07 19:15:11 -0400
commita965e53c6cc7931d50c1fb7b50a5fd364482bfa4 (patch)
tree4930124ee8a8006bbc70bb0576335aeba8fd47f9 /Cargo.lock
parentf44aac189c1e83174b4ae132157901f3d3c5e0b7 (diff)
fix wrong unit being used for memory in sysinfo data (#824)
* fix wrong unit being used for memory in sysinfo data * update sysinfo to 0.26.4 for unsupported reasons w/ ntapi
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock19
1 files changed, 14 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 0364edd7..df094d40 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -775,7 +775,7 @@ dependencies = [
"lazy_static",
"libc",
"mach",
- "ntapi",
+ "ntapi 0.3.7",
"smol",
"winapi",
]
@@ -1000,7 +1000,7 @@ dependencies = [
"libc",
"log",
"miow",
- "ntapi",
+ "ntapi 0.3.7",
"winapi",
]
@@ -1065,6 +1065,15 @@ dependencies = [
]
[[package]]
+name = "ntapi"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bc51db7b362b205941f71232e56c625156eb9a929f8cf74a428fd5bc094a4afc"
+dependencies = [
+ "winapi",
+]
+
+[[package]]
name = "num-integer"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1536,14 +1545,14 @@ dependencies = [
[[package]]
name = "sysinfo"
-version = "0.26.2"
+version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ae2421f3e16b3afd4aa692d23b83d0ba42ee9b0081d5deeb7d21428d7195fb1"
+checksum = "7890fff842b8db56f2033ebee8f6efe1921475c3830c115995552914fb967580"
dependencies = [
"cfg-if",
"core-foundation-sys 0.8.3",
"libc",
- "ntapi",
+ "ntapi 0.4.0",
"once_cell",
"rayon",
"winapi",