Skip to content

Commit 7e6c5ae

Browse files
Bump vmm-sys-util from 0.12.1 to 0.13.0 (#400)
1 parent dac2f54 commit 7e6c5ae

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

Cargo.lock

Lines changed: 17 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/hyperlight_host/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ tracing = { version = "0.1.41", features = ["log"] }
3939
tracing-log = "0.2.0"
4040
tracing-core = "0.1.33"
4141
hyperlight-common = { workspace = true, default-features = true }
42-
vmm-sys-util = "0.12.1"
42+
vmm-sys-util = "0.13.0"
4343
crossbeam = "0.8.0"
4444
crossbeam-channel = "0.5.14"
4545
thiserror = "2.0.12"

src/hyperlight_host/src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ pub enum HyperlightError {
178178
/// Error occurred in KVM Operation
179179
#[error("KVM Error {0:?}")]
180180
#[cfg(kvm)]
181-
KVMError(#[source] kvm_ioctls::Error),
181+
KVMError(#[from] kvm_ioctls::Error),
182182

183183
/// An attempt to get a lock from a Mutex failed.
184184
#[error("Unable to lock resource")]

0 commit comments

Comments
 (0)