Skip to content

Commit 1709e4f

Browse files
dependabot[bot]Manciukic
authored andcommitted
build(deps): Bump the firecracker group with 7 updates
Bumps the firecracker group with 7 updates: | Package | From | To | | --- | --- | --- | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.6` | `2.0.7` | | [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.216` | | [serde_derive](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.216` | | [semver](https://github.com/dtolnay/semver) | `1.0.23` | `1.0.24` | | [proptest](https://github.com/proptest-rs/proptest) | `1.5.0` | `1.6.0` | | [cc](https://github.com/rust-lang/cc-rs) | `1.2.3` | `1.2.4` | | [home](https://github.com/rust-lang/cargo) | `0.5.9` | `0.5.11` | Updates `thiserror` from 2.0.6 to 2.0.7 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@2.0.6...2.0.7) Updates `serde` from 1.0.215 to 1.0.216 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.215...v1.0.216) Updates `serde_derive` from 1.0.215 to 1.0.216 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.215...v1.0.216) Updates `semver` from 1.0.23 to 1.0.24 - [Release notes](https://github.com/dtolnay/semver/releases) - [Commits](dtolnay/semver@1.0.23...1.0.24) Updates `proptest` from 1.5.0 to 1.6.0 - [Release notes](https://github.com/proptest-rs/proptest/releases) - [Changelog](https://github.com/proptest-rs/proptest/blob/main/CHANGELOG.md) - [Commits](https://github.com/proptest-rs/proptest/commits) Updates `cc` from 1.2.3 to 1.2.4 - [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.2.3...cc-v1.2.4) Updates `home` from 0.5.9 to 0.5.11 - [Changelog](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/cargo/commits) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: serde_derive dependency-type: direct:production update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: semver dependency-type: direct:production update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: proptest dependency-type: direct:production update-type: version-update:semver-minor dependency-group: firecracker - dependency-name: cc dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: home dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 35502a5 commit 1709e4f

File tree

10 files changed

+45
-52
lines changed

10 files changed

+45
-52
lines changed

Cargo.lock

Lines changed: 27 additions & 34 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0"
88

99
[dependencies]
1010
displaydoc = "0.2.5"
11-
thiserror = "2.0.6"
11+
thiserror = "2.0.7"
1212
vm-memory = { version = "0.16.1", features = ["backend-mmap", "backend-bitmap"] }
1313
zerocopy = { version = "0.8.13", features = ["derive"] }
1414

src/cpu-template-helper/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ clap = { version = "4.5.23", features = ["derive", "string"] }
1414
displaydoc = "0.2.5"
1515
libc = "0.2.168"
1616
log-instrument = { path = "../log-instrument", optional = true }
17-
serde = { version = "1.0.215", features = ["derive"] }
17+
serde = { version = "1.0.216", features = ["derive"] }
1818
serde_json = "1.0.133"
19-
thiserror = "2.0.6"
19+
thiserror = "2.0.7"
2020

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

src/firecracker/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ log-instrument = { path = "../log-instrument", optional = true }
2323
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
2424

2525
seccompiler = { path = "../seccompiler" }
26-
serde = { version = "1.0.215", features = ["derive"] }
26+
serde = { version = "1.0.216", features = ["derive"] }
2727
serde_derive = "1.0.136"
2828
serde_json = "1.0.133"
29-
thiserror = "2.0.6"
29+
thiserror = "2.0.7"
3030
timerfd = "1.6.0"
3131
utils = { path = "../utils" }
3232
vmm = { path = "../vmm" }
@@ -38,13 +38,13 @@ libc = "0.2.168"
3838
regex = { version = "1.11.1", default-features = false, features = ["std", "unicode-perl"] }
3939

4040
# Dev-Dependencies for uffd examples
41-
serde = { version = "1.0.215", features = ["derive"] }
41+
serde = { version = "1.0.216", features = ["derive"] }
4242
userfaultfd = "0.8.1"
4343

4444
[build-dependencies]
4545
bincode = "1.2.1"
4646
seccompiler = { path = "../seccompiler" }
47-
serde = { version = "1.0.215" }
47+
serde = { version = "1.0.216" }
4848
serde_json = "1.0.133"
4949

5050
[features]

src/jailer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bench = false
1515
libc = "0.2.168"
1616
log-instrument = { path = "../log-instrument", optional = true }
1717
regex = { version = "1.11.1", default-features = false, features = ["std"] }
18-
thiserror = "2.0.6"
18+
thiserror = "2.0.7"
1919
vmm-sys-util = "0.12.1"
2020

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

src/rebase-snap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ bench = false
1313
displaydoc = "0.2.5"
1414
libc = "0.2.168"
1515
log-instrument = { path = "../log-instrument", optional = true }
16-
thiserror = "2.0.6"
16+
thiserror = "2.0.7"
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
@@ -20,9 +20,9 @@ bincode = "1.2.1"
2020
displaydoc = "0.2.5"
2121
libc = "0.2.168"
2222
log-instrument = { path = "../log-instrument", optional = true }
23-
serde = { version = "1.0.215", features = ["derive"] }
23+
serde = { version = "1.0.216", features = ["derive"] }
2424
serde_json = "1.0.133"
25-
thiserror = "2.0.6"
25+
thiserror = "2.0.7"
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
@@ -16,8 +16,8 @@ displaydoc = "0.2.5"
1616
fc_utils = { package = "utils", path = "../utils" }
1717
libc = "0.2.168"
1818
log-instrument = { path = "../log-instrument", optional = true }
19-
semver = "1.0.23"
20-
thiserror = "2.0.6"
19+
semver = "1.0.24"
20+
thiserror = "2.0.7"
2121
vmm = { path = "../vmm" }
2222
vmm-sys-util = "0.12.1"
2323

src/utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bench = false
1212
displaydoc = "0.2.5"
1313
libc = "0.2.168"
1414
log-instrument = { path = "../log-instrument", optional = true }
15-
thiserror = "2.0.6"
15+
thiserror = "2.0.7"
1616

1717
[features]
1818
tracing = ["log-instrument"]

src/vmm/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ memfd = "0.6.3"
3232
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
3333

3434
seccompiler = { path = "../seccompiler" }
35-
semver = { version = "1.0.23", features = ["serde"] }
36-
serde = { version = "1.0.215", features = ["derive", "rc"] }
35+
semver = { version = "1.0.24", features = ["serde"] }
36+
serde = { version = "1.0.216", features = ["derive", "rc"] }
3737
serde_json = "1.0.133"
3838
slab = "0.4.7"
39-
thiserror = "2.0.6"
39+
thiserror = "2.0.7"
4040
timerfd = "1.5.0"
4141
userfaultfd = "0.8.1"
4242
utils = { path = "../utils" }
@@ -54,7 +54,7 @@ vm-fdt = "0.3.0"
5454
criterion = { version = "0.5.0", default-features = false }
5555
device_tree = "1.1.0"
5656
itertools = "0.13.0"
57-
proptest = { version = "1.5.0", default-features = false, features = ["std"] }
57+
proptest = { version = "1.6.0", default-features = false, features = ["std"] }
5858

5959
[features]
6060
default = []

0 commit comments

Comments
 (0)