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 27 updates #105

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 25, 2024

Bumps the firecracker group with 27 updates:

Package From To
clap 4.5.2 4.5.3
proc-macro2 1.0.78 1.0.79
syn 2.0.52 2.0.55
uuid 1.7.0 1.8.0
thiserror 1.0.57 1.0.58
timerfd 1.5.0 1.6.0
regex 1.10.3 1.10.4
aho-corasick 1.1.2 1.1.3
clap_derive 4.5.0 4.5.3
heck 0.4.1 0.5.0
indexmap 2.2.5 2.2.6
linux-raw-sys 0.3.8 0.4.13
prettyplease 0.2.16 0.2.17
rustix 0.37.27 0.38.31
smallvec 1.13.1 1.13.2
thiserror-impl 1.0.57 1.0.58
toml 0.8.11 0.8.12
toml_edit 0.22.7 0.22.9
windows-sys 0.48.0 0.52.0
windows-targets 0.48.5 0.52.0
windows_aarch64_gnullvm 0.48.5 0.52.0
windows_aarch64_msvc 0.48.5 0.52.0
windows_i686_gnu 0.48.5 0.52.0
windows_i686_msvc 0.48.5 0.52.0
windows_x86_64_gnu 0.48.5 0.52.0
windows_x86_64_gnullvm 0.48.5 0.52.0
windows_x86_64_msvc 0.48.5 0.52.0

Updates clap from 4.5.2 to 4.5.3

Release notes

Sourced from clap's releases.

v4.5.3

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck
Changelog

Sourced from clap's changelog.

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck
Commits

Updates proc-macro2 from 1.0.78 to 1.0.79

Release notes

Sourced from proc-macro2's releases.

1.0.79

  • Clean up dead code
Commits
  • 4ba4ab1 Release 1.0.79
  • b176581 Prevent new lint from turning off nightly span support under -Dwarnings
  • b9cd864 Fix dead_code warning on fallback SourceFile
  • e94f432 Ignore incompatible_msrv clippy lint for conditionally compiled code
  • 18c75c6 Ignore dead_code warning in test
  • 5cd21eb Update ui test suite to nightly-2024-02-01
  • See full diff in compare view

Updates syn from 2.0.52 to 2.0.55

Release notes

Sourced from syn's releases.

2.0.55

  • Restore compatibility with rustc 1.56 through 1.59 (#1603)

2.0.54

  • Fix dead code warning in generated code when using custom_keyword! with syn's "printing" feature disabled (#1602)

2.0.53

  • Implement Copy, Clone, and ToTokens for syn::parse::Nothing (#1597)
Commits
  • d4c4811 Release 2.0.55
  • 21d9e5f Merge pull request #1603 from dtolnay/compat
  • 6e8a372 Restore compatibility with rustc 1.56 through 1.59
  • a5d02b1 Release 2.0.54
  • c218a35 Merge pull request #1602 from dtolnay/deadcode
  • 2ddfdc6 Suppress dead code lint on custom token's span field
  • e4f3216 Update test suite to nightly-2024-03-23
  • fa563a4 Merge pull request #1601 from dtolnay/vistest
  • cfb9bb4 Add test of unnamed tuple struct field with inherited visibility
  • 73c3087 Update test suite to nightly-2024-03-22
  • Additional commits viewable in compare view

Updates uuid from 1.7.0 to 1.8.0

Release notes

Sourced from uuid's releases.

1.8.0

⚠️ Potential Breakage ⚠️

A new impl AsRef<Uuid> for Uuid bound has been added, which can break inference on code like:

let b = uuid.as_ref();

You can fix these by explicitly typing the result of the conversion:

let b: &[u8] = uuid.as_ref();

or by calling as_bytes instead:

let b = uuid.as_bytes();

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.7.0...1.8.0

Commits
  • 0f2aaae Merge pull request #747 from uuid-rs/cargo/1.8.0
  • 01d16c3 prepare for 1.8.0 release
  • e4746bc Merge pull request #745 from uuid-rs/ci/outdated
  • d0396ad Merge pull request #746 from uuid-rs/chore/draft-link
  • 9415ed4 Merge pull request #743 from koshell/main
  • 951e8e3 Merge pull request #738 from rerun-io/emilk/wasm-bindgen-only-on-web
  • 101aa84 add v6 to v8 draft link to README
  • 84dcbba run outdated on a schedule
  • ca952b1 add a workflow for running cargo outdated
  • abe995a Make the toml longer, more complicated, and functional
  • Additional commits viewable in compare view

Updates thiserror from 1.0.57 to 1.0.58

Release notes

Sourced from thiserror's releases.

1.0.58

  • Make backtrace support available when using -Dwarnings (#292)
Commits

Updates timerfd from 1.5.0 to 1.6.0

Commits

Updates regex from 1.10.3 to 1.10.4

Commits
  • aa2d8bd 1.10.4
  • 088d7f3 api: add Cow guarantee to replace API
  • a5ae351 regex-automata-0.4.6
  • 9cf4a42 automata: fix bug where reverse NFA lacked an unanchored prefix
  • 10fe722 style: clean up some recent lint violations
  • d7f9347 regex-automata-0.4.5
  • 07ef7f1 automata: make additional prefileter metadata public
  • See full diff in compare view

Updates aho-corasick from 1.1.2 to 1.1.3

Commits

Updates clap_derive from 4.5.0 to 4.5.3

Release notes

Sourced from clap_derive's releases.

v4.5.3

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck

v4.5.2

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

v4.5.1

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Changelog

Sourced from clap_derive's changelog.

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Commits
  • 4e07b43 chore: Release
  • 8247c7d docs: Update changelog
  • 677c52c chore: Update heck requirement (#5396)
  • f65d421 chore: Release
  • 886b272 docs: Update changelog
  • 3ba4297 Merge pull request #5386 from amaanq/static-var-name
  • 2aea950 fix: Use SCREAMING_SNAKE_CASE for static variable authors
  • 690f555 Merge pull request #5382 from clap-rs/renovate/pre-commit-action-3.x
  • a2aa644 chore(deps): update compatible (dev) (#5381)
  • c233de5 chore(deps): update pre-commit/action action to v3.0.1
  • Additional commits viewable in compare view

Updates heck from 0.4.1 to 0.5.0

Changelog

Sourced from heck's changelog.

0.5.0

  • Add no_std support.
  • Remove non-additive unicode feature. The library now uses char::is_alphanumeric instead of the unicode-segmentation library to determine word boundaries in all cases.
Commits

Updates indexmap from 2.2.5 to 2.2.6

Changelog

Sourced from indexmap's changelog.

2.2.6

  • Added trait MutableValues for opt-in mutable access to set values.
Commits

Updates linux-raw-sys from 0.3.8 to 0.4.13

Commits

Updates prettyplease from 0.2.16 to 0.2.17

Release notes

Sourced from prettyplease's releases.

0.2.17

  • Fix formatting of imports that contain ::{self as (#70)
Commits
  • 0875d2d Release 0.2.17
  • 7f0aef1 Merge pull request #70 from dtolnay/selfas
  • a899304 Preserve braces in 'use path::to::{self as rename}'
  • d8b3595 Revert "Temporarily disable prettyplease-update-examples in CI"
  • c49b5fe Temporarily disable prettyplease-update-examples in CI
  • 2b6085f Update test suite to nightly-2024-03-06
  • d54ac46 Merge pull request #66 from dtolnay/exhaustive
  • bcbb5fc Pick up changes to non_exhaustive_omitted_patterns lint
  • See full diff in compare view

Updates rustix from 0.37.27 to 0.38.31

Release notes

Sourced from rustix's releases.

0.38.0

  • Meta:

    • Rust 1.63
    • bitflags 2
    • significant compile-time improvements
  • Some APIs were factored out into new toplevel API modules, with their corresponding cargo feature flags:

    • rustix::event, for epoll, eventfd, and poll
    • rustix::pipe, for pipe, tee, splice, and related functions
    • rustix::procfs, for procfs-related APIs
    • rustix::stdio, for *std{in,out,err}
    • rustix::system, for uname, sysinfo, and sethostname
  • rustix::io changes:

    • SeekFrom was moved to rustix::fs.
  • rustix::net changes:

    • socket now takes an Option<Protocol> and Protocol no longer implements Default; change Protocol::default() to None.
    • sendmsg_noaddr is renamed to sendmsg.
    • getsockopt_nosigpipe and setsockopt_nosigpipe are renamed to get_socket_nosigpipe and set_socket_nosigpipe.
    • AcceptFlags is renamed to SocketFlags.
  • rustix::event changes:

    • epoll changes:
      • epoll::epoll_add, epoll::epoll_mod, and epoll::epoll_del were renamed to epoll::add, epoll::modify, and epoll::delete.
      • The EventVec iterator now returns Events rather than tuples.
      • epoll::Event::data is changed from a u64 to a custom EventData type which can hold either a u64 or a *mut c_void.
  • rustix::fs changes:

    • rustix::fs::chmodat_with is renamed to rustix::fs::chmodat.
    • rustix::fs::cwd() is replaced with rustix::fs::CWD.
      • Non-*at versions of several functions that implicitly operate on CWD were also added.
  • rustix::termios changes:

    • The API now fully supports arbitrary speeds. The cfsetispeed, cfsetospeed, cfsetspeed, tcsetattr2, and tcgetattr2 functions, as well as the CBAUD and CIBAUD constants, are replaced by set_input_speed, set_output_speed, and set_speed functions on Termios.
    • The speed macros such as B9600 are no longer required (B9600 now always has the value 9600, and so on for all the other speed macros), but they can still be used. They're now in the rustix::termios::speed module.
    • cfmakeraw is now called Termios::make_raw.
  • rustix::process changes:

    • Pid::from_raw is no longer unsafe.
    • Pid::from_raw_nonzero is removed, and a new Pid::from_raw_unchecked is added.
    • ReaperStatus::pid is now an Option<Pid>, as the OS doesn't always provide it.
  • rustix::io_uring changes:

    • io_uring_cqe now supports the big_cqe field, and no longer implements Copy and Clone.
Commits

Updates smallvec from 1.13.1 to 1.13.2

Release notes

Sourced from smallvec's releases.

v1.13.2

What's Changed

Full Changelog: servo/rust-smallvec@v1.13.1...v1.13.2

Commits

Updates thiserror-impl from 1.0.57 to 1.0.58

Release notes

Sourced from thiserror-impl's releases.

1.0.58

  • Make backtrace support available when using -Dwarnings (#292)
Commits

Updates toml from 0.8.11 to 0.8.12

Commits
  • 3a777b3 chore: Release
  • 7979905 docs: Update changelog
  • 487768d Merge pull request #703 from epage/overflow
  • 6987f77 chore(ci): Run with default opt-level
  • 21f545d fix(parser): Don't stackoverflow on opt-level=0
  • af1f97d refactor(parser): Pull recursion limit out to variable
  • See full diff in compare view

Updates toml_edit from 0.22.7 to 0.22.9

Commits
  • bb92dc3 chore: Release
  • 85713ec docs: Update changelog
  • 2dc02c0 Merge pull request #704 from epage/span
  • ddb5bf0 feat(edit): Make it easier to access spans
  • 3a777b3 chore: Release
  • 7979905 docs: Update changelog
  • 487768d Merge pull request #703 from epage/overflow
  • 6987f77 chore(ci): Run with default opt-level
  • 21f545d fix(parser): Don't stackoverflow on opt-level=0
  • af1f97d refactor(parser): Pull recursion limit out to variable
  • See full diff in compare view

Updates windows-sys from 0.48.0 to 0.52.0

Release notes

Sourced from windows-sys's releases.

0.52.0

This release includes updates to all crates. This includes the first update to the windows-sys crate in 8 months. It also includes the first published version of the riddle tool and the windows-version crate.

What's Changed

New Contributors

Full Changelog: microsoft/windows-rs@0.48.5...0.52.0

0.51.1

This is mainly for publishing an update of the windows-bindgen crate but also fixes a few minor readme and version issues to avoid confusion.

  • The windows and windows-core crates are updated to 0.51.1 to update the readme but are otherwise unchanged.
  • The windows-targets crate and arch-specific crates are updated to 0.48.3 to update the readme and bring the lib file names in line with the crate version.

Those are all semver-compatible updates.

  • The windows-bindgen crate is updated to 0.51.1 and includes the new riddle-based metadata processing capabilities and is compatible with the windows and windows-core crates.
  • The windows-metadata crate is updated to 0.51.1 and includes many refinements but is largely for internal use.

... (truncated)

Commits

Updates windows-targets from 0.48.5 to 0.52.0

Commits

Updates windows_aarch64_gnullvm from 0.48.5 to 0.52.0

Release notes

Sourced from windows_aarch64_gnullvm's releases.

0.52.0

This release includes updates to all crates. This includes the first update to the windows-sys crate in 8 months. It also includes the first published version of the riddle tool and the windows-version crate.

What's Changed

New Contributors

Full Changelog: microsoft/windows-rs@0.48.5...0.52.0

0.51.1

This is mainly for publishing an update of the windows-bindgen crate but also fixes a few minor readme and version issues to avoid confusion.

  • The windows and windows-core crates are updated to 0.51.1 to update the readme but are otherwise unchanged.
  • The windows-targets crate and arch-specific crates are updated to 0.48.3 to update the readme and bring the lib file names in line with the crate version.

Those are all semver-compatible updates.

  • The windows-bindgen crate is updated to 0.51.1 and includes the new riddle-based metadata processing capabilities and is compatible with the windows and windows-core crates.
  • The windows-metadata crate is updated to 0.51.1 and includes many refinements but is largely for internal use.

... (truncated)

Commits

Bumps the firecracker group with 27 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.2` | `4.5.3` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.78` | `1.0.79` |
| [syn](https://github.com/dtolnay/syn) | `2.0.52` | `2.0.55` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.7.0` | `1.8.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.57` | `1.0.58` |
| [timerfd](https://github.com/main--/rust-timerfd) | `1.5.0` | `1.6.0` |
| [regex](https://github.com/rust-lang/regex) | `1.10.3` | `1.10.4` |
| [aho-corasick](https://github.com/BurntSushi/aho-corasick) | `1.1.2` | `1.1.3` |
| [clap_derive](https://github.com/clap-rs/clap) | `4.5.0` | `4.5.3` |
| [heck](https://github.com/withoutboats/heck) | `0.4.1` | `0.5.0` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.2.5` | `2.2.6` |
| [linux-raw-sys](https://github.com/sunfishcode/linux-raw-sys) | `0.3.8` | `0.4.13` |
| [prettyplease](https://github.com/dtolnay/prettyplease) | `0.2.16` | `0.2.17` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.37.27` | `0.38.31` |
| [smallvec](https://github.com/servo/rust-smallvec) | `1.13.1` | `1.13.2` |
| [thiserror-impl](https://github.com/dtolnay/thiserror) | `1.0.57` | `1.0.58` |
| [toml](https://github.com/toml-rs/toml) | `0.8.11` | `0.8.12` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.22.7` | `0.22.9` |
| [windows-sys](https://github.com/microsoft/windows-rs) | `0.48.0` | `0.52.0` |
| [windows-targets](https://github.com/microsoft/windows-rs) | `0.48.5` | `0.52.0` |
| [windows_aarch64_gnullvm](https://github.com/microsoft/windows-rs) | `0.48.5` | `0.52.0` |
| [windows_aarch64_msvc](https://github.com/microsoft/windows-rs) | `0.48.5` | `0.52.0` |
| [windows_i686_gnu](https://github.com/microsoft/windows-rs) | `0.48.5` | `0.52.0` |
| [windows_i686_msvc](https://github.com/microsoft/windows-rs) | `0.48.5` | `0.52.0` |
| [windows_x86_64_gnu](https://github.com/microsoft/windows-rs) | `0.48.5` | `0.52.0` |
| [windows_x86_64_gnullvm](https://github.com/microsoft/windows-rs) | `0.48.5` | `0.52.0` |
| [windows_x86_64_msvc](https://github.com/microsoft/windows-rs) | `0.48.5` | `0.52.0` |


Updates `clap` from 4.5.2 to 4.5.3
- [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.2...v4.5.3)

Updates `proc-macro2` from 1.0.78 to 1.0.79
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.78...1.0.79)

Updates `syn` from 2.0.52 to 2.0.55
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.52...2.0.55)

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

Updates `thiserror` from 1.0.57 to 1.0.58
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.57...1.0.58)

Updates `timerfd` from 1.5.0 to 1.6.0
- [Commits](https://github.com/main--/rust-timerfd/commits)

Updates `regex` from 1.10.3 to 1.10.4
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.3...1.10.4)

Updates `aho-corasick` from 1.1.2 to 1.1.3
- [Commits](BurntSushi/aho-corasick@1.1.2...1.1.3)

Updates `clap_derive` from 4.5.0 to 4.5.3
- [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.0...v4.5.3)

Updates `heck` from 0.4.1 to 0.5.0
- [Changelog](https://github.com/withoutboats/heck/blob/master/CHANGELOG.md)
- [Commits](https://github.com/withoutboats/heck/commits)

Updates `indexmap` from 2.2.5 to 2.2.6
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.2.5...2.2.6)

Updates `linux-raw-sys` from 0.3.8 to 0.4.13
- [Commits](sunfishcode/linux-raw-sys@v0.3.8...v0.4.13)

Updates `prettyplease` from 0.2.16 to 0.2.17
- [Release notes](https://github.com/dtolnay/prettyplease/releases)
- [Commits](dtolnay/prettyplease@0.2.16...0.2.17)

Updates `rustix` from 0.37.27 to 0.38.31
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Commits](bytecodealliance/rustix@v0.37.27...v0.38.31)

Updates `smallvec` from 1.13.1 to 1.13.2
- [Release notes](https://github.com/servo/rust-smallvec/releases)
- [Commits](servo/rust-smallvec@v1.13.1...v1.13.2)

Updates `thiserror-impl` from 1.0.57 to 1.0.58
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.57...1.0.58)

Updates `toml` from 0.8.11 to 0.8.12
- [Commits](toml-rs/toml@toml-v0.8.11...toml-v0.8.12)

Updates `toml_edit` from 0.22.7 to 0.22.9
- [Commits](toml-rs/toml@v0.22.7...v0.22.9)

Updates `windows-sys` from 0.48.0 to 0.52.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.48.0...0.52.0)

Updates `windows-targets` from 0.48.5 to 0.52.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.48.5...0.52.0)

Updates `windows_aarch64_gnullvm` from 0.48.5 to 0.52.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.48.5...0.52.0)

Updates `windows_aarch64_msvc` from 0.48.5 to 0.52.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.48.5...0.52.0)

Updates `windows_i686_gnu` from 0.48.5 to 0.52.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.48.5...0.52.0)

Updates `windows_i686_msvc` from 0.48.5 to 0.52.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.48.5...0.52.0)

Updates `windows_x86_64_gnu` from 0.48.5 to 0.52.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.48.5...0.52.0)

Updates `windows_x86_64_gnullvm` from 0.48.5 to 0.52.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.48.5...0.52.0)

Updates `windows_x86_64_msvc` from 0.48.5 to 0.52.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.48.5...0.52.0)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: syn
  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: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: timerfd
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: aho-corasick
  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: heck
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: indexmap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: linux-raw-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: prettyplease
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: smallvec
  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
- dependency-name: toml
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: toml_edit
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: windows-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: windows-targets
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: windows_aarch64_gnullvm
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: windows_aarch64_msvc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: windows_i686_gnu
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: windows_i686_msvc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: windows_x86_64_gnu
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: windows_x86_64_gnullvm
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: windows_x86_64_msvc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 25, 2024
Copy link
Author

dependabot bot commented on behalf of github Apr 1, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 1, 2024
@dependabot dependabot bot deleted the dependabot/cargo/firecracker-b7cfb55872 branch April 1, 2024 17:09
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants