Skip to content

Commit 97bc2e3

Browse files
dependabot[bot]andrewjj20
authored andcommitted
Updated kvm-ioctls to 0.21 with related kvm-bindings
1 parent 7ada7d3 commit 97bc2e3

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ serde_json = "1.0.117"
1616
core_affinity = "^0.8.1"
1717

1818
[target.'cfg(target_os = "linux")'.dependencies]
19-
kvm-ioctls = { version = "0.17", optional = true }
20-
kvm-bindings = { version = "0.8", features = ["fam-wrappers"], optional = true }
19+
kvm-ioctls = { version = "0.21", optional = true }
20+
kvm-bindings = { version = "0.11", features = ["fam-wrappers"], optional = true }
2121

2222
[features]
2323
default = ["use_msr", "kvm"]

src/kvm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use std::error::Error;
1010
* Other structures such as CPUInfo will then make it accessible like the cpuid function
1111
*/
1212
pub struct KvmInfo {
13-
cpuid_info: kvm_bindings::fam_wrappers::CpuId,
13+
cpuid_info: kvm_bindings::CpuId,
1414
}
1515

1616
impl KvmInfo {

0 commit comments

Comments
 (0)