Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump the firecracker group with 14 updates #5035

Merged
merged 1 commit into from
Feb 11, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 10, 2025

Bumps the firecracker group with 14 updates:

Package From To
zerocopy 0.8.14 0.8.17
clap 4.5.27 4.5.28
uuid 1.12.1 1.13.1
derive_more 1.0.0 2.0.1
aws-lc-fips-sys 0.13.2 0.13.3
aws-lc-sys 0.25.0 0.25.1
cc 1.2.11 1.2.13
clap_derive 4.5.24 4.5.28
cmake 0.1.53 0.1.54
derive_more-impl 1.0.0 2.0.1
once_cell 1.20.2 1.20.3
toml 0.8.19 0.8.20
uuid-macro-internal 1.12.1 1.13.1
winnow 0.7.0 0.7.2

Updates zerocopy from 0.8.14 to 0.8.17

Release notes

Sourced from zerocopy's releases.

v0.8.17

What's Changed

Full Changelog: google/zerocopy@v0.8.16...v0.8.17

v0.8.16

What's Changed

Full Changelog: google/zerocopy@v0.8.15...v0.8.16

v0.8.15

What's Changed

Full Changelog: google/zerocopy@v0.8.15-alpha...v0.8.15

v0.8.15-alpha

What's Changed

New Contributors

Full Changelog: google/zerocopy@v0.8.14...v0.8.15-alpha

Commits

Updates clap from 4.5.27 to 4.5.28

Release notes

Sourced from clap's releases.

v4.5.28

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown
Changelog

Sourced from clap's changelog.

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown
Commits

Updates uuid from 1.12.1 to 1.13.1

Release notes

Sourced from uuid's releases.

1.13.1

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.13.0...1.13.1

1.13.0

⚠️ Potential Breakage

This release updates our version of getrandom to 0.3 and rand to 0.9. It is a potentially breaking change for the following users:

no-std users who enable the rng feature

uuid still uses getrandom by default on these platforms. Upgrade your version of getrandom and follow its new docs on configuring a custom backend.

wasm32-unknown-unknown users who enable the rng feature without the js feature

Upgrade your version of getrandom and follow its new docs on configuring a backend.

You'll also need to enable the rng-getrandom or rng-rand feature of uuid to force it to use getrandom as its backend:

[dependencies.uuid]
version = "1.13.0"
- features = ["v4"]
+ features = ["v4", "rng-getrandom"]
[dependencies.getrandom]
version = "0.3"

If you're on wasm32-unknown-unknown and using the js feature of uuid you shouldn't see any breakage. We've kept this behavior by vendoring in getrandom's web-based backend when the js feature is enabled.

What's Changed

Full Changelog: uuid-rs/uuid@1.12.1...1.13.0

Commits
  • 5421417 Merge pull request #799 from uuid-rs/cargo/1.13.1
  • df58674 prepare for 1.13.1 release
  • f175242 Merge pull request #797 from bushrat011899/wasm32_atomics
  • 65c31b3 Include CI Update
  • 17673a1 Fix wasm32 with atomics
  • 1cf1433 Merge pull request #795 from uuid-rs/cargo/1.13.0
  • ded7a1e prepare for 1.13.0 release
  • 6494c4b Merge pull request #794 from uuid-rs/feat/getrandom-wasm32
  • 9e7300c fix some warnings on various feature enablement
  • 6c155b4 work around lack of dep:x and x/y feature support in 1.63
  • Additional commits viewable in compare view

Updates derive_more from 1.0.0 to 2.0.1

Release notes

Sourced from derive_more's releases.

2.0.1

API docs Changelog

2.0.0 - The first release is never perfect

Breaking changes

  • use derive_more::SomeTrait now imports macro only. Importing macro with its trait along is possible now via use derive_more::with_trait::SomeTrait. (#406)
  • Top-level #[display("...")] attribute on an enum now has defaulting behavior instead of replacing when no wrapping is possible (no _variant placeholder). (#395)

Fixed

  • Associated types of type parameters not being treated as generics in Debug and Display expansions. (#399)
  • unreachable_code warnings on generated code when ! (never type) is used. (#404)
  • Ambiguous associated item error when deriving TryFrom, TryInto or FromStr with an associated item called Error or Err respectively. (#410)
  • Top-level #[display("...")] attribute on an enum being incorrectly treated as transparent or wrapping. (#395)
  • Omitted raw identifiers in Debug and Display expansions. (#431)
  • Incorrect rendering of raw identifiers as field names in Debug expansions. (#431)
  • Top-level #[display("...")] attribute on an enum not working transparently for directly specified fields. (#438)
  • Incorrect dereferencing of unsized fields in Debug and Display expansions. (#440)

New Contributors

Full Changelog: JelteF/derive_more@v1.0.0...v2.0.0

Changelog

Sourced from derive_more's changelog.

2.0.1 - 2025-02-03

Added

  • Add crate metadata for the Rust Playground. This makes sure that the Rust Playground will have all derive_more features available once selectors crate updates its derive_more version. (#445)

2.0.0 - 2025-02-03

Breaking changes

  • use derive_more::SomeTrait now imports macro only. Importing macro with its trait along is possible now via use derive_more::with_trait::SomeTrait. (#406)
  • Top-level #[display("...")] attribute on an enum now has defaulting behavior instead of replacing when no wrapping is possible (no _variant placeholder). (#395)

Fixed

  • Associated types of type parameters not being treated as generics in Debug and Display expansions. (#399)
  • unreachable_code warnings on generated code when ! (never type) is used. (#404)
  • Ambiguous associated item error when deriving TryFrom, TryInto or FromStr with an associated item called Error or Err respectively. (#410)
  • Top-level #[display("...")] attribute on an enum being incorrectly treated as transparent or wrapping. (#395)
  • Omitted raw identifiers in Debug and Display expansions. (#431)
  • Incorrect rendering of raw identifiers as field names in Debug expansions. (#431)
  • Top-level #[display("...")] attribute on an enum not working transparently for directly specified fields. (#438)
  • Incorrect dereferencing of unsized fields in Debug and Display expansions. (#440)

0.99.19 - 2025-02-03

  • Add crate metadata for the Rust Playground.
Commits

Updates aws-lc-fips-sys from 0.13.2 to 0.13.3

Commits

Updates aws-lc-sys from 0.25.0 to 0.25.1

Commits

Updates cc from 1.2.11 to 1.2.13

Release notes

Sourced from cc's releases.

cc-v1.2.13

Other

  • Fix cross-compiling for Apple platforms (#1389)

cc-v1.2.12

Other

  • Split impl Build (#1382)
  • Don't specify both -target and -mtargetos= on Apple targets (#1384)
Changelog

Sourced from cc's changelog.

1.2.13 - 2025-02-08

Other

  • Fix cross-compiling for Apple platforms (#1389)

1.2.12 - 2025-02-04

Other

  • Split impl Build (#1382)
  • Don't specify both -target and -mtargetos= on Apple targets (#1384)
Commits

Updates clap_derive from 4.5.24 to 4.5.28

Release notes

Sourced from clap_derive's releases.

v4.5.28

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown

v4.5.27

[4.5.27] - 2025-01-20

Documentation

  • Iterate on tutorials and reference based on feedback

v4.5.26

[4.5.26] - 2025-01-09

Fixes

  • (error) Reduce binary size with the suggestions feature

v4.5.25

[4.5.25] - 2025-01-09

Fixes

  • (help) Reduce binary size
Changelog

Sourced from clap_derive's changelog.

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown

[4.5.27] - 2025-01-20

Documentation

  • Iterate on tutorials and reference based on feedback

[4.5.26] - 2025-01-09

Fixes

  • (error) Reduce binary size with the suggestions feature

[4.5.25] - 2025-01-09

Fixes

  • (help) Reduce binary size
Commits

Updates cmake from 0.1.53 to 0.1.54

Release notes

Sourced from cmake's releases.

v0.1.54

Other

  • Remove workaround for broken cc-rs versions (#235)
  • Be more precise in the description of register_dep (#238)
Changelog

Sourced from cmake's changelog.

0.1.54 - 2025-02-10

Other

  • Remove workaround for broken cc-rs versions (#235)
  • Be more precise in the description of register_dep (#238)
Commits

Updates derive_more-impl from 1.0.0 to 2.0.1

Release notes

Sourced from derive_more-impl's releases.

2.0.1

API docs Changelog

2.0.0 - The first release is never perfect

Breaking changes

  • use derive_more::SomeTrait now imports macro only. Importing macro with its trait along is possible now via use derive_more::with_trait::SomeTrait. (#406)
  • Top-level #[display("...")] attribute on an enum now has defaulting behavior instead of replacing when no wrapping is possible (no _variant placeholder). (#395)

Fixed

  • Associated types of type parameters not being treated as generics in Debug and Display expansions. (#399)
  • unreachable_code warnings on generated code when ! (never type) is used. (#404)
  • Ambiguous associated item error when deriving TryFrom, TryInto or FromStr with an associated item called Error or Err respectively. (#410)
  • Top-level #[display("...")] attribute on an enum being incorrectly treated as transparent or wrapping. (#395)
  • Omitted raw identifiers in Debug and Display expansions. (#431)
  • Incorrect rendering of raw identifiers as field names in Debug expansions. (#431)
  • Top-level #[display("...")] attribute on an enum not working transparently for directly specified fields. (#438)
  • Incorrect dereferencing of unsized fields in Debug and Display expansions. (#440)

New Contributors

Full Changelog: JelteF/derive_more@v1.0.0...v2.0.0

Changelog

Sourced from derive_more-impl's changelog.

2.0.1 - 2025-02-03

Added

  • Add crate metadata for the Rust Playground. This makes sure that the Rust Playground will have all derive_more features available once selectors crate updates its derive_more version. (#445)

2.0.0 - 2025-02-03

Breaking changes

  • use derive_more::SomeTrait now imports macro only. Importing macro with its trait along is possible now via use derive_more::with_trait::SomeTrait. (#406)
  • Top-level #[display("...")] attribute on an enum now has defaulting behavior instead of replacing when no wrapping is possible (no _variant placeholder). (#395)

Fixed

  • Associated types of type parameters not being treated as generics in Debug and Display expansions. (#399)
  • unreachable_code warnings on generated code when ! (never type) is used. (#404)
  • Ambiguous associated item error when deriving TryFrom, TryInto or FromStr with an associated item called Error or Err respectively. (#410)
  • Top-level #[display("...")] attribute on an enum being incorrectly treated as transparent or wrapping. (#395)
  • Omitted raw identifiers in Debug and Display expansions. (#431)
  • Incorrect rendering of raw identifiers as field names in Debug expansions. (#431)
  • Top-level #[display("...")] attribute on an enum not working transparently for directly specified fields. (#438)
  • Incorrect dereferencing of unsized fields in Debug and Display expansions. (#440)

0.99.19 - 2025-02-03

  • Add crate metadata for the Rust Playground.
Commits

Updates once_cell from 1.20.2 to 1.20.3

Changelog

Sourced from once_cell's changelog.

Changelog

Unreleased

  • Outline initialization in race: #273.
Commits
  • d119eea Merge pull request #273 from briansmith/b/cold
  • 1a885da Make initialization in OnceNonZeroUsize::get_or_try_init #[cold].
  • See full diff in compare view

Updates toml from 0.8.19 to 0.8.20

Commits

Updates uuid-macro-internal from 1.12.1 to 1.13.1

Release notes

Sourced from uuid-macro-internal's releases.

1.13.1

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.13.0...1.13.1

1.13.0

⚠️ Potential Breakage

This release updates our version of getrandom to 0.3 and rand to 0.9. It is a potentially breaking change for the following users:

no-std users who enable the rng feature

uuid still uses getrandom by default on these platforms. Upgrade your version of getrandom and follow its new docs on configuring a custom backend.

wasm32-unknown-unknown users who enable the rng feature without the js feature

Upgrade your version of getrandom and follow its new docs on configuring a backend.

You'll also need to enable the rng-getrandom or rng-rand feature of uuid to force it to use getrandom as its backend:

[dependencies.uuid]
version = "1.13.0"
- features = ["v4"]
+ features = ["v4", "rng-getrandom"]
[dependencies.getrandom]
version = "0.3"

If you're on wasm32-unknown-unknown and using the js feature of uuid you shouldn't see any breakage. We've kept this behavior by vendoring in getrandom's web-based backend when the js feature is enabled.

What's Changed

Full Changelog: uuid-rs/uuid@1.12.1...1.13.0

Commits
  • 5421417 Merge pull request #799 from uuid-rs/cargo/1.13.1
  • df58674 prepare for 1.13.1 release
  • f175242 Merge pull request #797 from bushrat011899/wasm32_atomics
  • 65c31b3 Include CI Update
  • 17673a1 Fix wasm32 with atomics
  • 1cf1433 Merge pull request #795 from uuid-rs/cargo/1.13.0
  • ded7a1e prepare for 1.13.0 release
  • 6494c4b Merge pull request #794 from uuid-rs/feat/getrandom-wasm32
  • 9e7300c fix some warnings on various feature enablement
  • 6c155b4 work around lack of dep:x and x/y feature support in 1.63
  • Additional commits viewable in compare view

Updates winnow from 0.7.0 to 0.7.2

Changelog

Sourced from winnow's changelog.

[0.7.2] - 2025-02-10

Fixes

  • Make Range Copyable

[0.7.1] - 2025-02-03

Fixes

  • Don't panic when calling .next(), .next(), .finish() on iterator
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the firecracker group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.14` | `0.8.17` |
| [clap](https://github.com/clap-rs/clap) | `4.5.27` | `4.5.28` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.12.1` | `1.13.1` |
| [derive_more](https://github.com/JelteF/derive_more) | `1.0.0` | `2.0.1` |
| [aws-lc-fips-sys](https://github.com/aws/aws-lc-rs) | `0.13.2` | `0.13.3` |
| [aws-lc-sys](https://github.com/aws/aws-lc-rs) | `0.25.0` | `0.25.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.11` | `1.2.13` |
| [clap_derive](https://github.com/clap-rs/clap) | `4.5.24` | `4.5.28` |
| [cmake](https://github.com/rust-lang/cmake-rs) | `0.1.53` | `0.1.54` |
| [derive_more-impl](https://github.com/JelteF/derive_more) | `1.0.0` | `2.0.1` |
| [once_cell](https://github.com/matklad/once_cell) | `1.20.2` | `1.20.3` |
| [toml](https://github.com/toml-rs/toml) | `0.8.19` | `0.8.20` |
| [uuid-macro-internal](https://github.com/uuid-rs/uuid) | `1.12.1` | `1.13.1` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.7.0` | `0.7.2` |


Updates `zerocopy` from 0.8.14 to 0.8.17
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.14...v0.8.17)

Updates `clap` from 4.5.27 to 4.5.28
- [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.27...clap_complete-v4.5.28)

Updates `uuid` from 1.12.1 to 1.13.1
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.12.1...1.13.1)

Updates `derive_more` from 1.0.0 to 2.0.1
- [Release notes](https://github.com/JelteF/derive_more/releases)
- [Changelog](https://github.com/JelteF/derive_more/blob/master/CHANGELOG.md)
- [Commits](JelteF/derive_more@v1.0.0...v2.0.1)

Updates `aws-lc-fips-sys` from 0.13.2 to 0.13.3
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@aws-lc-fips-sys/v0.13.2...aws-lc-fips-sys/v0.13.3)

Updates `aws-lc-sys` from 0.25.0 to 0.25.1
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@aws-lc-sys/v0.25.0...aws-lc-sys/v0.25.1)

Updates `cc` from 1.2.11 to 1.2.13
- [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.11...cc-v1.2.13)

Updates `clap_derive` from 4.5.24 to 4.5.28
- [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.24...v4.5.28)

Updates `cmake` from 0.1.53 to 0.1.54
- [Release notes](https://github.com/rust-lang/cmake-rs/releases)
- [Changelog](https://github.com/rust-lang/cmake-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/cmake-rs@v0.1.53...v0.1.54)

Updates `derive_more-impl` from 1.0.0 to 2.0.1
- [Release notes](https://github.com/JelteF/derive_more/releases)
- [Changelog](https://github.com/JelteF/derive_more/blob/master/CHANGELOG.md)
- [Commits](JelteF/derive_more@v1.0.0...v2.0.1)

Updates `once_cell` from 1.20.2 to 1.20.3
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.20.2...v1.20.3)

Updates `toml` from 0.8.19 to 0.8.20
- [Commits](toml-rs/toml@toml-v0.8.19...toml-v0.8.20)

Updates `uuid-macro-internal` from 1.12.1 to 1.13.1
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.12.1...1.13.1)

Updates `winnow` from 0.7.0 to 0.7.2
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.7.0...v0.7.2)

---
updated-dependencies:
- dependency-name: zerocopy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: derive_more
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: firecracker
- dependency-name: aws-lc-fips-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: aws-lc-sys
  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: clap_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: cmake
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: derive_more-impl
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: firecracker
- dependency-name: once_cell
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: toml
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: uuid-macro-internal
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 10, 2025
Copy link

codecov bot commented Feb 10, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 83.13%. Comparing base (ab019ea) to head (06989c3).
Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #5035      +/-   ##
==========================================
- Coverage   83.16%   83.13%   -0.03%     
==========================================
  Files         245      245              
  Lines       26642    26651       +9     
==========================================
  Hits        22156    22156              
- Misses       4486     4495       +9     
Flag Coverage Δ
5.10-c5n.metal 83.61% <ø> (ø)
5.10-m5n.metal 83.58% <ø> (ø)
5.10-m6a.metal 82.80% <ø> (ø)
5.10-m6g.metal 79.56% <ø> (-0.04%) ⬇️
5.10-m6i.metal 83.58% <ø> (ø)
5.10-m7g.metal 79.56% <ø> (-0.04%) ⬇️
6.1-c5n.metal 83.61% <ø> (ø)
6.1-m5n.metal 83.58% <ø> (-0.01%) ⬇️
6.1-m6a.metal 82.80% <ø> (-0.01%) ⬇️
6.1-m6g.metal 79.55% <ø> (-0.04%) ⬇️
6.1-m6i.metal 83.58% <ø> (ø)
6.1-m7g.metal 79.55% <ø> (-0.04%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@roypat roypat added the Status: Awaiting review Indicates that a pull request is ready to be reviewed label Feb 10, 2025
@zulinx86 zulinx86 merged commit 3ca2fab into main Feb 11, 2025
8 of 10 checks passed
@zulinx86 zulinx86 deleted the dependabot/cargo/firecracker-e53e041abb branch February 11, 2025 10:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code Status: Awaiting review Indicates that a pull request is ready to be reviewed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants