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 across 1 directory with 66 updates #117

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 27, 2024

Bumps the firecracker group with 47 updates in the / directory:

Package From To
clap 4.5.2 4.5.4
itertools 0.12.1 0.13.0
proc-macro2 1.0.78 1.0.84
quote 1.0.35 1.0.36
syn 2.0.52 2.0.66
uuid 1.7.0 1.8.0
libc 0.2.153 0.2.155
serde 1.0.197 1.0.203
serde_json 1.0.114 1.0.117
thiserror 1.0.57 1.0.61
timerfd 1.5.0 1.6.0
cargo_toml 0.19.2 0.20.2
regex 1.10.3 1.10.4
nix 0.28.0 0.29.0
semver 1.0.22 1.0.23
aho-corasick 1.1.2 1.1.3
anstream 0.6.13 0.6.14
anstyle 1.0.6 1.0.7
anstyle-parse 0.2.3 0.2.4
anstyle-query 1.0.2 1.0.3
anstyle-wincon 3.0.2 3.0.3
autocfg 1.1.0 1.3.0
aws-lc-fips-sys 0.12.5 0.12.8
aws-lc-rs 1.6.2 1.7.2
cc 1.0.90 1.0.98
clang-sys 1.7.0 1.8.0
colorchoice 1.0.0 1.0.1
either 1.10.0 1.12.0
errno 0.3.8 0.3.9
getrandom 0.2.12 0.2.15
half 2.4.0 2.4.1
hashbrown 0.14.3 0.14.5
indexmap 2.2.5 2.2.6
itoa 1.0.10 1.0.11
memchr 2.7.1 2.7.2
num-traits 0.2.18 0.2.19
paste 1.0.14 1.0.15
prettyplease 0.2.16 0.2.20
regex-syntax 0.8.2 0.8.3
ryu 1.0.17 1.0.18
serde_spanned 0.6.5 0.6.6
smallvec 1.13.1 1.13.2
strsim 0.11.0 0.11.1
toml 0.8.11 0.8.13
winapi-util 0.1.6 0.1.8
winnow 0.6.5 0.6.8
zeroize 1.7.0 1.8.1

Updates clap from 4.5.2 to 4.5.4

Release notes

Sourced from clap's releases.

v4.5.4

[4.5.4] - 2024-03-25

Fixes

  • (derive) Allow non-literal #[arg(id)] attributes again

v4.5.3

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck
Changelog

Sourced from clap's changelog.

[4.5.4] - 2024-03-25

Fixes

  • (derive) Allow non-literal #[arg(id)] attributes again

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck
Commits

Updates itertools from 0.12.1 to 0.13.0

Changelog

Sourced from itertools's changelog.

0.13.0

Breaking

  • Removed implementation of DoubleEndedIterator for ConsTuples (#853)
  • Made MultiProduct fused and fixed on an empty iterator (#835, #834)
  • Changed iproduct! to return tuples for maxi one iterator too (#870)
  • Changed PutBack::put_back to return the old value (#880)
  • Removed deprecated repeat_call, Itertools::{foreach, step, map_results, fold_results} (#878)
  • Removed TakeWhileInclusive::new (#912)

Added

  • Added Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key} (#654, #885)
  • Added Itertools::tail (#899)
  • Implemented DoubleEndedIterator for ProcessResults (#910)
  • Implemented Debug for FormatWith (#931)
  • Added Itertools::get (#891)

Changed

  • Deprecated Itertools::group_by (renamed chunk_by) (#866, #879)
  • Deprecated unfold (use std::iter::from_fn instead) (#871)
  • Optimized GroupingMapBy (#873, #876)
  • Relaxed Fn bounds to FnMut in diff_with, Itertools::into_group_map_by (#886)
  • Relaxed Debug/Clone bounds for MapInto (#889)
  • Documented the use_alloc feature (#887)
  • Optimized Itertools::set_from (#888)
  • Removed badges in README.md (#890)
  • Added "no-std" categories in Cargo.toml (#894)
  • Fixed Itertools::k_smallest on short unfused iterators (#900)
  • Deprecated Itertools::tree_fold1 (renamed tree_reduce) (#895)
  • Deprecated GroupingMap::fold_first (renamed reduce) (#902)
  • Fixed Itertools::k_smallest(0) to consume the iterator, optimized Itertools::k_smallest(1) (#909)
  • Specialized Combinations::nth (#914)
  • Specialized MergeBy::fold (#920)
  • Specialized CombinationsWithReplacement::nth (#923)
  • Specialized FlattenOk::{fold, rfold} (#927)
  • Specialized Powerset::nth (#924)
  • Documentation fixes (#882, #936)
  • Fixed assert_equal for iterators longer than i32::MAX (#932)
  • Updated the must_use message of non-lazy KMergeBy and TupleCombinations (#939)

Notable Internal Changes

  • Tested iterator laziness (#792)
  • Created CONTRIBUTING.md (#767)
Commits
  • d5084d1 Prepare v0.13.0 release (#937)
  • d7c99d5 TupleCombinations is not lazy but must be used nonetheless
  • 074c7fc KMergeBy is not lazy but must be used nonetheless
  • 2ad9e07 assert_equal: fix clippy::default_numeric_fallback
  • 0d4efc8 Remove free function get
  • 05cc0ee get(s..=usize::MAX) should be fine when s != 0
  • 3c16f14 get: when is it ESI and/or DEI
  • 4dd6ba0 get: panics if the range includes usize::MAX
  • 7a9ce56 get(r: Range) as Skip\<Take>
  • f676f2f Remove the unspecified check about .get(exhausted_range_inclusive)
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.78 to 1.0.84

Release notes

Sourced from proc-macro2's releases.

1.0.84

1.0.83

  • Optimize the representation of Ident (#462)

1.0.82

  • Resolve unexpected_cfgs warning (#456)

1.0.81

  • Documentation improvements

1.0.80

  • Add Literal::byte_character constructor (#449)
  • Add Literal::c_string constructor #450)

1.0.79

  • Clean up dead code
Commits
  • 33c9578 Release 1.0.84
  • d850da5 Merge pull request #455 from CensoredUsername/master
  • eabac15 Add a warning to Delimiter::None that rustc currently does not respect it.
  • 1b77aca Release 1.0.83
  • 728eddf Merge pull request #462 from dtolnay/identsize
  • c56c5e6 Drop irrelevant capacity field from Ident representation
  • 464c2eb Merge pull request #461 from dtolnay/sizetest
  • 6f894e7 Disable span size tests when layout is randomized
  • 7b357af Add additional size tests
  • abc7dff Merge pull request #460 from dtolnay/docsrs
  • Additional commits viewable in compare view

Updates quote from 1.0.35 to 1.0.36

Release notes

Sourced from quote's releases.

1.0.36

  • Documentation improvements
Commits
  • 5d4880c Release 1.0.36
  • 1dd7ce7 Merge pull request #273 from dtolnay/doc
  • 0bc5d12 Apply doc comment to cfg(not(doc)) macros too
  • c295f5c Revert "Temporarily disable miri on doctests"
  • 435bd1b Update ui test suite to nightly-2024-03-31
  • cc3847d Explicitly install a Rust toolchain for cargo-outdated job
  • 6259d49 Temporarily disable miri on doctests
  • bdb4b59 Update ui test suite to nightly-2024-02-08
  • c2aeca9 Update ui test suite to nightly-2024-01-31
  • 376a061 Merge pull request #270 from dtolnay/bench
  • Additional commits viewable in compare view

Updates syn from 2.0.52 to 2.0.66

Release notes

Sourced from syn's releases.

2.0.66

  • Allow braced structs when parsing ExprLet (#1671)

2.0.65

  • Optimize the implementation of Fold to compile faster (#1666, #1667, #1668)

2.0.64

  • Support using ParseBuffer across catch_unwind (#1646)
  • Validate that the expression in a let-else ends in brace as required by rustc (#1648, #1649)
  • Legalize invalid const generic arguments by wrapping in braces (#1654, #1655)
  • Fix some expression precedence edge cases involving break and return in loop headers (#1656)
  • Always print closure bodies with a brace when the closure has an explicit return type (#1658)
  • Automatically insert necessary parentheses in ToTokens for Expr when required by expression precedence (#1659)
  • Support struct literal syntax in match guard expressions (#1662)

2.0.63

  • Parse and print long if-else-if chains without reliance on deep recursion to avoid overflowing stack (#1644, #1645)

2.0.62

  • Reject invalid unparenthesized range and comparison operator expressions (#1642, #1643)

2.0.61

  • Check for legal binding name in the ident of Pat::Ident (#1627)
  • Resolve unexpected_cfgs warning (#1635)

2.0.60

  • Improve how None-delimited groups are counted by peek (#1625)

2.0.59

  • Parse c"…" and cr"…" C-string literal syntax as Lit::CStr (#1502)

2.0.58

  • Support $ in custom_punctuation! macro (#1611)

2.0.57

  • Eliminate dependency on quote when built with default-features disabled and the "proc-macro" feature enabled (#1608, thanks @​BD103)

2.0.56

  • Apply RUSTC_WORKSPACE_WRAPPER when deciding whether to run nightly-only tests (#1605)

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

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 libc from 0.2.153 to 0.2.155

Release notes

Sourced from libc's releases.

0.2.155

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.154...0.2.155

0.2.154

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.153...0.2.154

Commits
  • 7df63bd Merge pull request #3682 from madsmtm/new-version
  • 0bbb5cd Merge pull request #3690 from tesuji/android-posix-spawn
  • 15c74a4 Update version to 0.2.155
  • 664947b Merge pull request #3708 from cuviper/ci-sparc64-0.2
  • 61331df Also skip MFD_EXEC and MFD_NOEXEC_SEAL on sparc64
  • 73d2004 Skip SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV on sparc64
  • 80535f3 Revert "Upgrade Docker images to Ubuntu 23.10" on sparc64
  • b2b2fd7 Readd posix_spawn{_file_actions_t,attr_t} on Android
  • 7646277 Merge pull request #3686 from redox-os/redox-epoll-0.2
  • 5eff703 redox: correct EPOLL constants
  • Additional commits viewable in compare view

Updates serde from 1.0.197 to 1.0.203

Release notes

Sourced from serde's releases.

v1.0.203

  • Documentation improvements (#2747)

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)

v1.0.198

Commits
  • d5bc546 Release 1.0.203
  • 45ae217 Merge pull request #2747 from dtolnay/variadic
  • b7b97dd Unindent implementation inside tuple_impl_body macro
  • 5d3c563 Document tuple impls as fake variadic
  • 3761854 Merge pull request #2745 from dtolnay/docsrs
  • a8f1484 Rely on docs.rs to define --cfg=docsrs by default
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • Additional commits viewable in compare view

Updates serde_json from 1.0.114 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)

v1.0.116

v1.0.115

  • Documentation improvements
Commits
  • 0ae247c Release 1.0.117
  • 4517c7a PartialEq is not implemented between Value and 128-bit ints
  • fdf99c7 Combine number PartialEq tests
  • b4fc245 Merge pull request #1130 from serde-rs/checkcfg
  • 98f1a24 Resolve unexpected_cfgs warning
  • a3f62bb Release 1.0.116
  • 12c8ee0 Hide "non-exhaustive patterns" errors when crate fails to compile
  • 051ce97 Merge pull request 1124 from mleonhard/master
  • 25dc750 Replace features_check mod with a call to std::compile_error!. Fixes htt...
  • 2e15e3d Revert "Temporarily disable miri on doctests"
  • Additional commits viewable in compare view

Updates thiserror from 1.0.57 to 1.0.61

Release notes

Sourced from thiserror's releases.

1.0.61

  • Use core::fmt and core::panic to facilitate error_in_core support (#299, thanks @​jordens)

1.0.60

  • Resolve unexpected_cfgs warning (#298)

1.0.59

  • Unblock testing of rustc debug-fmt-detail option (#297)

1.0.58

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

Updates serde_derive from 1.0.197 to 1.0.203

Release notes

Sourced from serde_derive's releases.

v1.0.203

  • Documentation improvements (#2747)

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)

v1.0.198

Commits
  • d5bc546 Release 1.0.203
  • 45ae217 Merge pull request #2747 from dtolnay/variadic
  • b7b97dd Unindent implementation inside tuple_impl_body macro
  • 5d3c563 Document tuple impls as fake variadic
  • 3761854 Merge pull request #2745 from dtolnay/docsrs
  • a8f1484 Rely on docs.rs to define --cfg=docsrs by default
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • Additional commits viewable in compare view

Updates timerfd from 1.5.0 to 1.6.0

Commits

Updates cargo_toml from 0.19.2 to 0.20.2

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 nix from 0.28.0 to 0.29.0

Changelog

Sourced from nix's changelog.

[0.29.0] - 2024-05-24

Added

  • Add getregset()/setregset() for Linux/glibc/x86/x86_64/aarch64/riscv64 and getregs()/setregs() for Linux/glibc/aarch64/riscv64 (#2044)
  • Add socket option Ipv6Ttl for apple targets. (#2287)
  • Add socket option UtunIfname. (#2325)
  • make SigAction repr(transparent) & can be converted to the libc raw type (#2326)
  • Add From trait implementation for conversions between sockaddr_in and SockaddrIn, sockaddr_in6 and SockaddrIn6 (#2328)
  • Add socket option ReusePortLb for FreeBSD. (#2332)
  • Added support for openat2 on linux. (#2339)
  • Add if_indextoname function. (#2340)
  • Add mount and unmount API for apple targets. (#2347)
  • Added _PC_MIN_HOLE_SIZE for pathconf and fpathconf. (#2349)
  • Added impl AsFd for pty::PtyMaster (#2355)
  • Add open flag O_SEARCH to AIX, Empscripten, FreeBSD, Fuchsia, solarish, WASI (#2374)
  • Add prctl function prctl_set_vma_anon_name for Linux/Android. (#2378)
  • Add sync(2) for apple_targets/solarish/haiku/aix/hurd, syncfs(2) for hurd and fdatasync(2) for aix/hurd (#2379)
  • Add fdatasync support for Apple targets. (#2380)
  • Add fcntl::OFlag::O_PATH for FreeBSD and Fuchsia (#2382)
  • Added PathconfVar::MIN_HOLE_SIZE for apple_targets. (#2388)
  • Add open flag O_SEARCH to apple_targets (#2391)
  • O_DSYNC may now be used with aio_fsync and fcntl on FreeBSD. (#2404)
  • Added Flock::relock for upgrading and downgrading locks. (#2407)

Changed

... (truncated)

Commits
  • 1dad4d8 chore: prepare for 0.29.0
  • f743197 fix ControlMessageOwned::UdpGroSegments UDP packets processing type. (#2406)
  • 208b80b recvmsg: Check if CMSG buffer was too small and return an error (#2413)
  • ecd12a9 test: remove test of inode count in test_statfs.rs (#2414)
  • 663506a fix: only close fanotify events with a valid fd (#2399)
  • 1604723 revert: impl From<sigaction> for SigAction (#2410)
  • ec4beb5 docs: correct limit value of FAN_UNLIMITED_QUEUE and FAN_UNLIMITED_MARKS[skip...
  • 84c0444 chore: bump libc to 0.2.155 (#2409)
  • c5af4ad Add Flock::relock (#2407)
  • e7acaff Enable O_DSYNC on FreeBSD with fcntl and aio_fsync (#2404)
  • Additional commits viewable in compare view

Updates semver from 1.0.22 to 1.0.23

Release notes

Sourced from semver's releases.

1.0.23

  • Resolve unexpected_cfgs warning (#318)
Commits

…dates

Bumps the firecracker group with 47 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.2` | `4.5.4` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.12.1` | `0.13.0` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.78` | `1.0.84` |
| [quote](https://github.com/dtolnay/quote) | `1.0.35` | `1.0.36` |
| [syn](https://github.com/dtolnay/syn) | `2.0.52` | `2.0.66` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.7.0` | `1.8.0` |
| [libc](https://github.com/rust-lang/libc) | `0.2.153` | `0.2.155` |
| [serde](https://github.com/serde-rs/serde) | `1.0.197` | `1.0.203` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.114` | `1.0.117` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.57` | `1.0.61` |
| [timerfd](https://github.com/main--/rust-timerfd) | `1.5.0` | `1.6.0` |
| [cargo_toml](https://gitlab.com/lib.rs/cargo_toml) | `0.19.2` | `0.20.2` |
| [regex](https://github.com/rust-lang/regex) | `1.10.3` | `1.10.4` |
| [nix](https://github.com/nix-rust/nix) | `0.28.0` | `0.29.0` |
| [semver](https://github.com/dtolnay/semver) | `1.0.22` | `1.0.23` |
| [aho-corasick](https://github.com/BurntSushi/aho-corasick) | `1.1.2` | `1.1.3` |
| [anstream](https://github.com/rust-cli/anstyle) | `0.6.13` | `0.6.14` |
| [anstyle](https://github.com/rust-cli/anstyle) | `1.0.6` | `1.0.7` |
| [anstyle-parse](https://github.com/rust-cli/anstyle) | `0.2.3` | `0.2.4` |
| [anstyle-query](https://github.com/rust-cli/anstyle) | `1.0.2` | `1.0.3` |
| [anstyle-wincon](https://github.com/rust-cli/anstyle) | `3.0.2` | `3.0.3` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.1.0` | `1.3.0` |
| [aws-lc-fips-sys](https://github.com/aws/aws-lc-rs) | `0.12.5` | `0.12.8` |
| [aws-lc-rs](https://github.com/awslabs/aws-lc-rs) | `1.6.2` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.90` | `1.0.98` |
| [clang-sys](https://github.com/KyleMayes/clang-sys) | `1.7.0` | `1.8.0` |
| [colorchoice](https://github.com/rust-cli/anstyle) | `1.0.0` | `1.0.1` |
| [either](https://github.com/rayon-rs/either) | `1.10.0` | `1.12.0` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.8` | `0.3.9` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.12` | `0.2.15` |
| [half](https://github.com/starkat99/half-rs) | `2.4.0` | `2.4.1` |
| [hashbrown](https://github.com/rust-lang/hashbrown) | `0.14.3` | `0.14.5` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.2.5` | `2.2.6` |
| [itoa](https://github.com/dtolnay/itoa) | `1.0.10` | `1.0.11` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.7.1` | `2.7.2` |
| [num-traits](https://github.com/rust-num/num-traits) | `0.2.18` | `0.2.19` |
| [paste](https://github.com/dtolnay/paste) | `1.0.14` | `1.0.15` |
| [prettyplease](https://github.com/dtolnay/prettyplease) | `0.2.16` | `0.2.20` |
| [regex-syntax](https://github.com/rust-lang/regex) | `0.8.2` | `0.8.3` |
| [ryu](https://github.com/dtolnay/ryu) | `1.0.17` | `1.0.18` |
| [serde_spanned](https://github.com/toml-rs/toml) | `0.6.5` | `0.6.6` |
| [smallvec](https://github.com/servo/rust-smallvec) | `1.13.1` | `1.13.2` |
| [strsim](https://github.com/rapidfuzz/strsim-rs) | `0.11.0` | `0.11.1` |
| [toml](https://github.com/toml-rs/toml) | `0.8.11` | `0.8.13` |
| [winapi-util](https://github.com/BurntSushi/winapi-util) | `0.1.6` | `0.1.8` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.6.5` | `0.6.8` |
| [zeroize](https://github.com/RustCrypto/utils) | `1.7.0` | `1.8.1` |



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

Updates `itertools` from 0.12.1 to 0.13.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.1...v0.13.0)

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

Updates `quote` from 1.0.35 to 1.0.36
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.35...1.0.36)

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

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 `libc` from 0.2.153 to 0.2.155
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](rust-lang/libc@0.2.153...0.2.155)

Updates `serde` from 1.0.197 to 1.0.203
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.197...v1.0.203)

Updates `serde_json` from 1.0.114 to 1.0.117
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.114...v1.0.117)

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

Updates `serde_derive` from 1.0.197 to 1.0.203
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.197...v1.0.203)

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

Updates `cargo_toml` from 0.19.2 to 0.20.2
- [Commits](https://gitlab.com/lib.rs/cargo_toml/compare/v0.19.2...v0.20.2)

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 `nix` from 0.28.0 to 0.29.0
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](nix-rust/nix@v0.28.0...v0.29.0)

Updates `semver` from 1.0.22 to 1.0.23
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.22...1.0.23)

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

Updates `anstream` from 0.6.13 to 0.6.14
- [Commits](rust-cli/anstyle@anstream-v0.6.13...anstream-v0.6.14)

Updates `anstyle` from 1.0.6 to 1.0.7
- [Commits](rust-cli/anstyle@v1.0.6...v1.0.7)

Updates `anstyle-parse` from 0.2.3 to 0.2.4
- [Commits](rust-cli/anstyle@anstyle-parse-v0.2.3...anstyle-parse-v0.2.4)

Updates `anstyle-query` from 1.0.2 to 1.0.3
- [Commits](rust-cli/anstyle@anstyle-query-v1.0.2...anstyle-query-v1.0.3)

Updates `anstyle-wincon` from 3.0.2 to 3.0.3
- [Commits](rust-cli/anstyle@anstyle-wincon-v3.0.2...anstyle-wincon-v3.0.3)

Updates `autocfg` from 1.1.0 to 1.3.0
- [Commits](cuviper/autocfg@1.1.0...1.3.0)

Updates `aws-lc-fips-sys` from 0.12.5 to 0.12.8
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@aws-lc-fips-sys/v0.12.5...aws-lc-fips-sys/v0.12.8)

Updates `aws-lc-rs` from 1.6.2 to 1.7.2
- [Release notes](https://github.com/awslabs/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@v1.6.2...v1.7.2)

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

Updates `cc` from 1.0.90 to 1.0.98
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Commits](rust-lang/cc-rs@1.0.90...1.0.98)

Updates `cfg_aliases` from 0.1.1 to 0.2.1
- [Release notes](https://github.com/katharostech/cfg_aliases/releases)
- [Changelog](https://github.com/katharostech/cfg_aliases/blob/master/release.toml)
- [Commits](katharostech/cfg_aliases@v0.1.1...v0.2.1)

Updates `clang-sys` from 1.7.0 to 1.8.0
- [Release notes](https://github.com/KyleMayes/clang-sys/releases)
- [Changelog](https://github.com/KyleMayes/clang-sys/blob/master/CHANGELOG.md)
- [Commits](https://github.com/KyleMayes/clang-sys/commits)

Updates `clap_derive` from 4.5.0 to 4.5.4
- [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.4)

Updates `colorchoice` from 1.0.0 to 1.0.1
- [Commits](rust-cli/anstyle@colorchoice-v1.0.0...colorchoice-v1.0.1)

Updates `either` from 1.10.0 to 1.12.0
- [Commits](rayon-rs/either@1.10.0...1.12.0)

Updates `errno` from 0.3.8 to 0.3.9
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](https://github.com/lambda-fairy/rust-errno/commits)

Updates `getrandom` from 0.2.12 to 0.2.15
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.12...v0.2.15)

Updates `half` from 2.4.0 to 2.4.1
- [Release notes](https://github.com/starkat99/half-rs/releases)
- [Changelog](https://github.com/starkat99/half-rs/blob/main/CHANGELOG.md)
- [Commits](starkat99/half-rs@v2.4.0...v2.4.1)

Updates `hashbrown` from 0.14.3 to 0.14.5
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](rust-lang/hashbrown@v0.14.3...v0.14.5)

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 `itoa` from 1.0.10 to 1.0.11
- [Release notes](https://github.com/dtolnay/itoa/releases)
- [Commits](dtolnay/itoa@1.0.10...1.0.11)

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

Updates `memchr` from 2.7.1 to 2.7.2
- [Commits](BurntSushi/memchr@2.7.1...2.7.2)

Updates `num-traits` from 0.2.18 to 0.2.19
- [Changelog](https://github.com/rust-num/num-traits/blob/master/RELEASES.md)
- [Commits](rust-num/num-traits@num-traits-0.2.18...num-traits-0.2.19)

Updates `paste` from 1.0.14 to 1.0.15
- [Release notes](https://github.com/dtolnay/paste/releases)
- [Commits](dtolnay/paste@1.0.14...1.0.15)

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

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

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 `ryu` from 1.0.17 to 1.0.18
- [Release notes](https://github.com/dtolnay/ryu/releases)
- [Commits](dtolnay/ryu@1.0.17...1.0.18)

Updates `serde_spanned` from 0.6.5 to 0.6.6
- [Commits](toml-rs/toml@serde_spanned-v0.6.5...serde_spanned-v0.6.6)

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 `strsim` from 0.11.0 to 0.11.1
- [Release notes](https://github.com/rapidfuzz/strsim-rs/releases)
- [Changelog](https://github.com/rapidfuzz/strsim-rs/blob/main/CHANGELOG.md)
- [Commits](rapidfuzz/strsim-rs@v0.11.0...v0.11.1)

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

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

Updates `toml_datetime` from 0.6.5 to 0.6.6
- [Commits](toml-rs/toml@toml_datetime-v0.6.5...toml_datetime-v0.6.6)

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

Updates `winapi-util` from 0.1.6 to 0.1.8
- [Commits](BurntSushi/winapi-util@0.1.6...0.1.8)

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)

Updates `winnow` from 0.6.5 to 0.6.8
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.6.5...v0.6.8)

Updates `zeroize` from 1.7.0 to 1.8.1
- [Commits](RustCrypto/utils@zeroize-v1.7.0...zeroize-v1.8.1)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: quote
  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: libc
  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_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: thiserror
  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: timerfd
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: cargo_toml
  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: nix
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: semver
  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: anstream
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: anstyle
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: anstyle-parse
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: anstyle-query
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: anstyle-wincon
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: autocfg
  dependency-type: indirect
  update-type: version-update:semver-minor
  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-rs
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: aws-lc-sys
  dependency-type: indirect
  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: cfg_aliases
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: clang-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: clap_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: colorchoice
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: either
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: errno
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: getrandom
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: half
  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: 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: itoa
  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: memchr
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: num-traits
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: paste
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: prettyplease
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: regex-syntax
  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: ryu
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: serde_spanned
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: smallvec
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: strsim
  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_datetime
  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: winapi-util
  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
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: zeroize
  dependency-type: indirect
  update-type: version-update:semver-minor
  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 May 27, 2024
Copy link
Author

dependabot bot commented on behalf of github Jun 3, 2024

Superseded by #118.

@dependabot dependabot bot closed this Jun 3, 2024
@dependabot dependabot bot deleted the dependabot/cargo/firecracker-59c94f7347 branch June 3, 2024 16:23
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