diff --git a/Cargo.lock b/Cargo.lock index 5eeb43f1..d9767f43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3064,7 +3064,7 @@ dependencies = [ "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core", + "windows-core 0.51.1", ] [[package]] @@ -3134,7 +3134,7 @@ dependencies = [ "rtnetlink", "system-configuration", "tokio", - "windows", + "windows 0.51.1", ] [[package]] @@ -6749,16 +6749,16 @@ dependencies = [ [[package]] name = "sysinfo" -version = "0.29.11" +version = "0.30.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd727fc423c2060f6c92d9534cef765c65a6ed3f428a03d7def74a8c4348e666" +checksum = "732ffa00f53e6b2af46208fba5718d9662a421049204e156328b66791ffa15ae" dependencies = [ "cfg-if", "core-foundation-sys", "libc", "ntapi", "once_cell", - "winapi", + "windows 0.52.0", ] [[package]] @@ -8382,10 +8382,20 @@ version = "0.51.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" dependencies = [ - "windows-core", + "windows-core 0.51.1", "windows-targets 0.48.5", ] +[[package]] +name = "windows" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" +dependencies = [ + "windows-core 0.52.0", + "windows-targets 0.52.3", +] + [[package]] name = "windows-core" version = "0.51.1" @@ -8395,6 +8405,15 @@ dependencies = [ "windows-targets 0.48.5", ] +[[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.3", +] + [[package]] name = "windows-sys" version = "0.48.0" diff --git a/examples/websocket-relay/Cargo.toml b/examples/websocket-relay/Cargo.toml index e8698ea9..52da23b7 100644 --- a/examples/websocket-relay/Cargo.toml +++ b/examples/websocket-relay/Cargo.toml @@ -15,7 +15,7 @@ homestar-runtime = { path = "../../homestar-runtime", default-features = false, homestar-workspace-hack = { workspace = true } miette = { version = "5.10", features = ["fancy"] } retry = "2.0" -sysinfo = { version = "0.29", default-features = false } +sysinfo = { version = "0.30", default-features = false } tracing = "0.1" [[bin]] diff --git a/homestar-runtime/Cargo.toml b/homestar-runtime/Cargo.toml index 204e3f7a..ad2e9678 100644 --- a/homestar-runtime/Cargo.toml +++ b/homestar-runtime/Cargo.toml @@ -152,7 +152,7 @@ serde_with = { version = "3.5", default-features = false, features = [ "std", ] } stream-cancel = "0.8" -sysinfo = { version = "0.29", default-features = false, optional = true } +sysinfo = { version = "0.30", default-features = false, optional = true } tabled = { version = "0.15", default-features = false, features = [ "derive", "macros", @@ -225,7 +225,7 @@ retry = { version = "2.0", default-features = false } rm_rf = "0.6" serial_test = { version = "3.0", features = ["file_locks"] } strip-ansi-escapes = "0.2.0" -sysinfo = { version = "0.29", default-features = false } +sysinfo = { version = "0.30", default-features = false } tokio-test = "0.4" tokio-tungstenite = { version = "0.21", default-features = false, features = [ "connect",