Skip to content

Commit de05dad

Browse files
RuoqingHelauralt
authored andcommitted
chore: Move vmm-sys-util to workspace dependencies
Move `vmm-sys-util` to workspace dependencies to keep version in sync across workspace members. Signed-off-by: Ruoqing He <heruoqing@iscas.ac.cn>
1 parent 90ece63 commit de05dad

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ members = [
44
"kvm-bindings",
55
"kvm-ioctls",
66
]
7+
8+
[workspace.dependencies]
9+
vmm-sys-util = "0.14.0"

kvm-bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = ["dep:serde", "serde/derive", "dep:zerocopy"]
2020

2121

2222
[dependencies]
23-
vmm-sys-util = { version = "0.14.0", optional = true }
23+
vmm-sys-util = { workspace = true, optional = true }
2424
serde = { version = "1.0.0", optional = true, features = ["derive"] }
2525
zerocopy = { version = "0.8.23", optional = true, features = ["derive"] }
2626

kvm-ioctls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2021"
1212
[dependencies]
1313
libc = "0.2.39"
1414
kvm-bindings = { path = "../kvm-bindings", version = "0.11.0", features = ["fam-wrappers"] }
15-
vmm-sys-util = "0.14.0"
15+
vmm-sys-util = { workspace = true }
1616
bitflags = "2.4.1"
1717

1818
[dev-dependencies]

0 commit comments

Comments
 (0)