Skip to content

Commit abda431

Browse files
build(deps): Bump the firecracker group with 4 updates
Bumps the firecracker group with 4 updates: [clap](https://github.com/clap-rs/clap), [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util), [clap_builder](https://github.com/clap-rs/clap) and [once_cell](https://github.com/matklad/once_cell). Updates `clap` from 4.5.32 to 4.5.34 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@clap_complete-v4.5.32...clap_complete-v4.5.34) Updates `vmm-sys-util` from 0.12.1 to 0.13.0 - [Release notes](https://github.com/rust-vmm/vmm-sys-util/releases) - [Changelog](https://github.com/rust-vmm/vmm-sys-util/blob/main/CHANGELOG.md) - [Commits](rust-vmm/vmm-sys-util@v0.12.1...v0.13.0) Updates `clap_builder` from 4.5.32 to 4.5.34 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@v4.5.32...v4.5.34) Updates `once_cell` from 1.21.1 to 1.21.3 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](matklad/once_cell@v1.21.1...v1.21.3) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: vmm-sys-util dependency-type: direct:production update-type: version-update:semver-minor dependency-group: firecracker - dependency-name: clap_builder dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: once_cell dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent b38ec33 commit abda431

File tree

9 files changed

+37
-27
lines changed

9 files changed

+37
-27
lines changed

Cargo.lock

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

src/clippy-tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "clippy-tracing"
1010
bench = false
1111

1212
[dependencies]
13-
clap = { version = "4.5.32", features = ["derive"] }
13+
clap = { version = "4.5.34", features = ["derive"] }
1414
itertools = "0.14.0"
1515
proc-macro2 = { version = "1.0.94", features = ["span-locations"] }
1616
quote = "1.0.40"

src/cpu-template-helper/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "cpu-template-helper"
1010
bench = false
1111

1212
[dependencies]
13-
clap = { version = "4.5.32", features = ["derive", "string"] }
13+
clap = { version = "4.5.34", features = ["derive", "string"] }
1414
displaydoc = "0.2.5"
1515
libc = "0.2.171"
1616
log-instrument = { path = "../log-instrument", optional = true }
@@ -19,7 +19,7 @@ serde_json = "1.0.140"
1919
thiserror = "2.0.12"
2020

2121
vmm = { path = "../vmm" }
22-
vmm-sys-util = "0.12.1"
22+
vmm-sys-util = "0.13.0"
2323

2424
[features]
2525
tracing = ["log-instrument", "vmm/tracing"]

src/firecracker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ thiserror = "2.0.12"
2929
timerfd = "1.6.0"
3030
utils = { path = "../utils" }
3131
vmm = { path = "../vmm" }
32-
vmm-sys-util = { version = "0.12.1", features = ["with-serde"] }
32+
vmm-sys-util = { version = "0.13.0", features = ["with-serde"] }
3333

3434
[dev-dependencies]
3535
cargo_toml = "0.22.1"

src/jailer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ libc = "0.2.171"
1616
log-instrument = { path = "../log-instrument", optional = true }
1717
regex = { version = "1.11.1", default-features = false, features = ["std"] }
1818
thiserror = "2.0.12"
19-
vmm-sys-util = "0.12.1"
19+
vmm-sys-util = "0.13.0"
2020

2121
utils = { path = "../utils" }
2222

src/rebase-snap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ displaydoc = "0.2.5"
1414
libc = "0.2.171"
1515
log-instrument = { path = "../log-instrument", optional = true }
1616
thiserror = "2.0.12"
17-
vmm-sys-util = "0.12.1"
17+
vmm-sys-util = "0.13.0"
1818

1919
utils = { path = "../utils" }
2020

src/seccompiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bench = false
1717

1818
[dependencies]
1919
bincode = "1.2.1"
20-
clap = { version = "4.5.32", features = ["derive", "string"] }
20+
clap = { version = "4.5.34", features = ["derive", "string"] }
2121
displaydoc = "0.2.5"
2222
libc = "0.2.171"
2323
serde = { version = "1.0.219", features = ["derive"] }

src/snapshot-editor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "snapshot-editor"
1010
bench = false
1111

1212
[dependencies]
13-
clap = { version = "4.5.32", features = ["derive", "string"] }
13+
clap = { version = "4.5.34", features = ["derive", "string"] }
1414
displaydoc = "0.2.5"
1515

1616
fc_utils = { package = "utils", path = "../utils" }
@@ -19,7 +19,7 @@ log-instrument = { path = "../log-instrument", optional = true }
1919
semver = "1.0.26"
2020
thiserror = "2.0.12"
2121
vmm = { path = "../vmm" }
22-
vmm-sys-util = "0.12.1"
22+
vmm-sys-util = "0.13.0"
2323

2424
[target.'cfg(target_arch = "aarch64")'.dependencies]
2525
clap-num = "1.2.0"

src/vmm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ vhost = { version = "0.13.0", features = ["vhost-user-frontend"] }
4343
vm-allocator = "0.1.0"
4444
vm-memory = { version = "0.16.1", features = ["backend-mmap", "backend-bitmap"] }
4545
vm-superio = "0.8.0"
46-
vmm-sys-util = { version = "0.12.1", features = ["with-serde"] }
46+
vmm-sys-util = { version = "0.13.0", features = ["with-serde"] }
4747
zerocopy = { version = "0.8.24" }
4848

4949
[target.'cfg(target_arch = "aarch64")'.dependencies]

0 commit comments

Comments
 (0)