Skip to content

Commit a88f3b9

Browse files
dependabot[bot]roypat
authored andcommitted
build(deps): Bump the firecracker group with 10 updates
Bumps the firecracker group with 10 updates: | Package | From | To | | --- | --- | --- | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.67` | `2.0.3` | | [vm-memory](https://github.com/rust-vmm/vm-memory) | `0.16.0` | `0.16.1` | | [zerocopy](https://github.com/google/zerocopy) | `0.8.8` | `0.8.9` | | [libc](https://github.com/rust-lang/libc) | `0.2.161` | `0.2.162` | | [anstream](https://github.com/rust-cli/anstyle) | `0.6.17` | `0.6.18` | | [cc](https://github.com/rust-lang/cc-rs) | `1.1.34` | `1.1.37` | | [hashbrown](https://github.com/rust-lang/hashbrown) | `0.15.0` | `0.15.1` | | [regex-automata](https://github.com/rust-lang/regex) | `0.4.8` | `0.4.9` | | [rustix](https://github.com/bytecodealliance/rustix) | `0.38.38` | `0.38.40` | | [thiserror-impl](https://github.com/dtolnay/thiserror) | `1.0.67` | `1.0.69` | Updates `thiserror` from 1.0.67 to 2.0.3 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@1.0.67...2.0.3) Updates `vm-memory` from 0.16.0 to 0.16.1 - [Release notes](https://github.com/rust-vmm/vm-memory/releases) - [Changelog](https://github.com/rust-vmm/vm-memory/blob/main/CHANGELOG.md) - [Commits](rust-vmm/vm-memory@v0.16.0...v0.16.1) Updates `zerocopy` from 0.8.8 to 0.8.9 - [Release notes](https://github.com/google/zerocopy/releases) - [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md) - [Commits](https://github.com/google/zerocopy/commits) Updates `libc` from 0.2.161 to 0.2.162 - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/0.2.162/CHANGELOG.md) - [Commits](rust-lang/libc@0.2.161...0.2.162) Updates `anstream` from 0.6.17 to 0.6.18 - [Commits](rust-cli/anstyle@anstream-v0.6.17...anstream-v0.6.18) Updates `cc` from 1.1.34 to 1.1.37 - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md) - [Commits](rust-lang/cc-rs@cc-v1.1.34...cc-v1.1.37) Updates `hashbrown` from 0.15.0 to 0.15.1 - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](rust-lang/hashbrown@v0.15.0...v0.15.1) Updates `regex-automata` from 0.4.8 to 0.4.9 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/commits/regex-automata-0.4.9) Updates `rustix` from 0.38.38 to 0.38.40 - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md) - [Commits](bytecodealliance/rustix@v0.38.38...v0.38.40) Updates `thiserror-impl` from 1.0.67 to 1.0.69 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@1.0.67...1.0.69) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-major dependency-group: firecracker - dependency-name: vm-memory dependency-type: direct:production update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: zerocopy dependency-type: direct:production update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: anstream dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: cc dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: hashbrown dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: regex-automata dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: rustix dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: thiserror-impl dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent acc85f1 commit a88f3b9

File tree

10 files changed

+81
-61
lines changed

10 files changed

+81
-61
lines changed

Cargo.lock

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

src/acpi-tables/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ license = "Apache-2.0"
88

99
[dependencies]
1010
displaydoc = "0.2.5"
11-
thiserror = "1.0.67"
12-
vm-memory = { version = "0.16.0", features = ["backend-mmap", "backend-bitmap"] }
13-
zerocopy = { version = "0.8.8", features = ["derive"] }
11+
thiserror = "2.0.3"
12+
vm-memory = { version = "0.16.1", features = ["backend-mmap", "backend-bitmap"] }
13+
zerocopy = { version = "0.8.9", features = ["derive"] }
1414

1515
[lib]
1616
bench = false

src/cpu-template-helper/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ bench = false
1212
[dependencies]
1313
clap = { version = "4.5.20", features = ["derive", "string"] }
1414
displaydoc = "0.2.5"
15-
libc = "0.2.161"
15+
libc = "0.2.162"
1616
log-instrument = { path = "../log-instrument", optional = true }
1717
serde = { version = "1.0.214", features = ["derive"] }
1818
serde_json = "1.0.132"
19-
thiserror = "1.0.67"
19+
thiserror = "2.0.3"
2020

2121
vmm = { path = "../vmm" }
2222
vmm-sys-util = "0.12.1"

src/firecracker/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ bench = false
1818
[dependencies]
1919
displaydoc = "0.2.5"
2020
event-manager = "0.4.0"
21-
libc = "0.2.161"
21+
libc = "0.2.162"
2222
log-instrument = { path = "../log-instrument", optional = true }
2323
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
2424

2525
seccompiler = { path = "../seccompiler" }
2626
serde = { version = "1.0.214", features = ["derive"] }
2727
serde_derive = "1.0.136"
2828
serde_json = "1.0.132"
29-
thiserror = "1.0.67"
29+
thiserror = "2.0.3"
3030
timerfd = "1.6.0"
3131
utils = { path = "../utils" }
3232
vmm = { path = "../vmm" }
3333
vmm-sys-util = { version = "0.12.1", features = ["with-serde"] }
3434

3535
[dev-dependencies]
3636
cargo_toml = "0.20.5"
37-
libc = "0.2.161"
37+
libc = "0.2.162"
3838
regex = { version = "1.11.1", default-features = false, features = ["std", "unicode-perl"] }
3939

4040
# Dev-Dependencies for uffd examples

src/jailer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ name = "jailer"
1212
bench = false
1313

1414
[dependencies]
15-
libc = "0.2.161"
15+
libc = "0.2.162"
1616
log-instrument = { path = "../log-instrument", optional = true }
1717
nix = { version = "0.29.0", default-features = false, features = ["dir"] }
1818
regex = { version = "1.11.1", default-features = false, features = ["std"] }
19-
thiserror = "1.0.67"
19+
thiserror = "2.0.3"
2020
vmm-sys-util = "0.12.1"
2121

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

src/rebase-snap/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ bench = false
1111

1212
[dependencies]
1313
displaydoc = "0.2.5"
14-
libc = "0.2.161"
14+
libc = "0.2.162"
1515
log-instrument = { path = "../log-instrument", optional = true }
16-
thiserror = "1.0.67"
16+
thiserror = "2.0.3"
1717
vmm-sys-util = "0.12.1"
1818

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

src/seccompiler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ bench = false
1818
[dependencies]
1919
bincode = "1.2.1"
2020
displaydoc = "0.2.5"
21-
libc = "0.2.161"
21+
libc = "0.2.162"
2222
log-instrument = { path = "../log-instrument", optional = true }
2323
serde = { version = "1.0.214", features = ["derive"] }
2424
serde_json = "1.0.132"
25-
thiserror = "1.0.67"
25+
thiserror = "2.0.3"
2626

2727
utils = { path = "../utils" }
2828

src/snapshot-editor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ clap = { version = "4.5.20", features = ["derive", "string"] }
1414
displaydoc = "0.2.5"
1515

1616
fc_utils = { package = "utils", path = "../utils" }
17-
libc = "0.2.161"
17+
libc = "0.2.162"
1818
log-instrument = { path = "../log-instrument", optional = true }
1919
semver = "1.0.23"
20-
thiserror = "1.0.67"
20+
thiserror = "2.0.3"
2121
vmm = { path = "../vmm" }
2222
vmm-sys-util = "0.12.1"
2323

src/utils/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ bench = false
1111
[dependencies]
1212
derive_more = { version = "1.0.0", default-features = false, features = ["from"] }
1313
displaydoc = "0.2.5"
14-
libc = "0.2.161"
14+
libc = "0.2.162"
1515
log-instrument = { path = "../log-instrument", optional = true }
1616
serde = { version = "1.0.214", features = ["derive"] }
17-
thiserror = "1.0.67"
18-
vm-memory = { version = "0.16.0", features = ["backend-mmap", "backend-bitmap"] }
17+
thiserror = "2.0.3"
18+
vm-memory = { version = "0.16.1", features = ["backend-mmap", "backend-bitmap"] }
1919
vmm-sys-util = "0.12.1"
2020

2121
[dev-dependencies]

0 commit comments

Comments
 (0)