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 32 updates #98

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Feb 26, 2024

Bumps the firecracker group with 32 updates:

Package From To
clap 4.4.18 4.5.1
syn 2.0.48 2.0.51
serde 1.0.196 1.0.197
serde_json 1.0.113 1.0.114
thiserror 1.0.56 1.0.57
micro_http e75dfa1 ef43cef
serde_derive 1.0.196 1.0.197
nix 0.27.1 0.28.0
env_logger 0.11.1 0.11.2
semver 1.0.21 1.0.22
aes 0.8.3 0.8.4
anstream 0.6.11 0.6.12
anstyle 1.0.5 1.0.6
aws-lc-fips-sys 0.12.1 0.12.3
aws-lc-rs 1.6.1 1.6.2
aws-lc-sys 0.13.0 0.13.2
cc 1.0.83 1.0.88
clap_builder 4.4.18 4.5.1
clap_derive 4.4.7 4.5.0
clap_lex 0.6.0 0.7.0
either 1.9.0 1.10.0
half 2.3.1 2.4.0
hermit-abi 0.3.4 0.3.8
indexmap 2.2.2 2.2.3
is-terminal 0.4.10 0.4.12
num-traits 0.2.17 0.2.18
ryu 1.0.16 1.0.17
strsim 0.10.0 0.11.0
thiserror-impl 1.0.56 1.0.57
toml 0.8.9 0.8.10
toml_edit 0.21.1 0.22.6
winnow 0.5.37 0.6.2

Updates clap from 4.4.18 to 4.5.1

Release notes

Sourced from clap's releases.

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

v4.5.0

No release notes provided.

Changelog

Sourced from clap's changelog.

[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

[4.5.0] - 2024-02-08

Compatibility

  • Update MSRV to 1.74
Commits
  • 0c01b55 chore: Release
  • 08e0b5b docs: Update changelog
  • f2c4e6e Merge pull request #5359 from poliorcetics/ab/push-szymvyzpmnqx
  • e782775 fix(complete): Handle newlines in command/arg descriptions
  • fba7c85 test(complete): Show newline issue
  • 8a7a13a chore: Release
  • 7b3a3e1 docs: Update changelog
  • 7b624ca Merge pull request #5356 from epage/escape
  • 446328a fix(error): Include -- in more cases
  • 7de6df8 test(error): Show existing last behavior
  • Additional commits viewable in compare view

Updates syn from 2.0.48 to 2.0.51

Release notes

Sourced from syn's releases.

2.0.51

  • Resolve non_local_definitions warnings in generated code under rustc 1.78-nightly

2.0.50

  • Fix unused_imports warnings when compiled by rustc 1.78

2.0.49

  • Improve error location when parsing from an empty string literal using LitStr::parse (#1590)
Commits
  • 5e15a9b Release 2.0.51
  • 7e0d4e1 Resolve non_local_definitions warning in debug impls
  • 8667ad9 Ignore module_name_repetitions pedantic clippy lint in codegen
  • 1fc3200 Update test suite to nightly-2024-02-26
  • 07a2065 Update test suite to nightly-2024-02-23
  • 0dae015 Release 2.0.50
  • 2b493c3 Update location of Pat variant aliases
  • 07a435d Fix doc links now that crate::* is no longer imported
  • 713f932 Eliminate glob imports
  • 6eb82a9 Eliminate glob imports from codegen
  • Additional commits viewable in compare view

Updates serde from 1.0.196 to 1.0.197

Release notes

Sourced from serde's releases.

v1.0.197

  • Fix unused_imports warnings when compiled by rustc 1.78
  • Optimize code size of some Display impls (#2697, thanks @​nyurik)
Commits
  • 5fa711d Release 1.0.197
  • f5d8ae4 Resolve prelude redundant import warnings
  • 1d54973 Merge pull request #2697 from nyurik/format-str
  • b8fafef A few minor write_str optimizations and inlining
  • c42ebb8 Update ui test suite to nightly-2024-02-12
  • 9e68062 Ignore incompatible_msrv clippy lint for conditionally compiled code
  • 846f865 Ignore dead_code warnings in test
  • See full diff in compare view

Updates serde_json from 1.0.113 to 1.0.114

Release notes

Sourced from serde_json's releases.

v1.0.114

  • Fix unused_imports warnings when compiled by rustc 1.78
Commits
  • e1b3a6d Release 1.0.114
  • 6fb7026 Work around prelude redundant import warnings
  • 34a04c5 Ignore incompatible_msrv clippy false positives in test
  • ca05f69 Remove unused Float::is_sign_negative trait method
  • See full diff in compare view

Updates thiserror from 1.0.56 to 1.0.57

Release notes

Sourced from thiserror's releases.

1.0.57

  • Generate more efficient Display impl for error message which do not contain any interpolated value (#286, thanks @​nyurik)
Commits
  • 1d106b1 Release 1.0.57
  • 8a5c4d1 Use write_str when args only consists of trailing comma
  • f790bee Phrase flag in terms of whether core::fmt machinery is required
  • d43b759 Ignore needless_raw_string_hashes pedantic clippy lint in test
  • d09c418 Touch up PR 286
  • 097251d Merge pull request #286 from nyurik/litstr
  • cd79876 optimize by avoiding second fmt.value() call
  • d7e738e Optimize simple literals for Display::fmt
  • 0717de3 Update ui test suite to nightly-2024-02-08
  • c7c7547 Update ui test suite to nightly-2024-01-31
  • See full diff in compare view

Updates micro_http from e75dfa1 to ef43cef

Commits
  • ef43cef chore: appease clippy
  • ca77046 Bump rust-vmm-ci from 665f31f to 7606478
  • 7e2684d fix: Always set Content-Length field in non-100/204 responses
  • See full diff in compare view

Updates serde_derive from 1.0.196 to 1.0.197

Release notes

Sourced from serde_derive's releases.

v1.0.197

  • Fix unused_imports warnings when compiled by rustc 1.78
  • Optimize code size of some Display impls (#2697, thanks @​nyurik)
Commits
  • 5fa711d Release 1.0.197
  • f5d8ae4 Resolve prelude redundant import warnings
  • 1d54973 Merge pull request #2697 from nyurik/format-str
  • b8fafef A few minor write_str optimizations and inlining
  • c42ebb8 Update ui test suite to nightly-2024-02-12
  • 9e68062 Ignore incompatible_msrv clippy lint for conditionally compiled code
  • 846f865 Ignore dead_code warnings in test
  • See full diff in compare view

Updates nix from 0.27.1 to 0.28.0

Changelog

Sourced from nix's changelog.

[0.28.0] - 2024-02-24

Added

  • Added mkdtemp wrapper (#1297)

  • Add associated constants UTIME_OMIT UTIME_NOW for TimeSpec (#1879)

  • Added EventFd type. (#1945)

    • Added impl From<Signal> for SigSet.
    • Added impl std::ops::BitOr for SigSet.
    • Added impl std::ops::BitOr for Signal.
    • Added impl std::ops::BitOr<Signal> for SigSet

    (#1959)

  • Added TlsGetRecordType control message type and corresponding enum for linux (#2065)

  • Added Ipv6HopLimit to ::nix::sys::socket::ControlMessage for Linux, MacOS, FreeBSD, DragonflyBSD, Android, iOS and Haiku. (#2074)

  • Added Icmp and IcmpV6 to SockProtocol (#2103)

  • Added rfork support for FreeBSD in unistd (#2121)

  • Added MapFlags::map_hugetlb_with_size_log2 method for Linux targets (#2125)

  • Added mmap_anonymous function (#2127)

  • Added mips32r6 and mips64r6 support for signal, ioctl and ptrace (#2138)

  • Added F_GETPATH FcntlFlags entry on Apple/NetBSD/DragonflyBSD for ::nix::fcntl. (#2142)

  • Added F_KINFO FcntlFlags entry on FreeBSD for ::nix::fcntl. (#2152)

  • Added F_GETPATH_NOFIRMLINK and F_BARRIERFSYNC FcntlFlags entry on Apple for ::nix::fcntl. (#2155)

  • Added newtype Flock to automatically unlock a held flock upon drop. Added Flockable trait to represent valid types for Flock. (#2170)

  • Added SetSockOpt impls to enable Linux Kernel TLS on a TCP socket and to import TLS parameters. (#2175)

    • Added the ::nix::sys::socket::SocketTimestamp enum for configuring the TsClock (a.k.a SO_TS_CLOCK) sockopt
    • Added FreeBSD's ScmRealtime and ScmMonotonic as new options in ::nix::sys::socket::ControlMessageOwned

    (#2187)

  • Added new fanotify API: wrappers for fanotify_init and fanotify_mark (#2194)

... (truncated)

Commits

Updates env_logger from 0.11.1 to 0.11.2

Release notes

Sourced from env_logger's releases.

v0.11.2

[0.11.2] - 2024-02-13

Changelog

Sourced from env_logger's changelog.

[0.11.2] - 2024-02-13

Commits
  • b0e3ea9 chore: Release
  • 522ce17 Merge pull request #310 from epage/docs
  • c67579c docs(fmt): Talk about new styling API
  • 62713d1 refactor(docs): Use intra-doc links
  • 1b0f4dd docs(fmt): Point people to anstyle adapters
  • 8bf7499 refactor(fmt): Use simplified anstyle formatting
  • 5e0566e chore: Update anstyle
  • 6562f9a docs(changelog): Add migration guide
  • 8c94cd5 Merge pull request #308 from epage/rustbuild
  • 2f636ed chore: Remove potentially unused rustbuild cfgs
  • Additional commits viewable in compare view

Updates semver from 1.0.21 to 1.0.22

Release notes

Sourced from semver's releases.

1.0.22

  • Fix unused_imports warnings when compiled by rustc 1.78
Commits
  • c8ad1bf Release 1.0.22
  • f76db8d Resolve redundant import warning
  • f32b420 Ignore incompatible_msrv clippy lint for conditionally compiled code
  • See full diff in compare view

Updates aes from 0.8.3 to 0.8.4

Commits

Updates anstream from 0.6.11 to 0.6.12

Commits

Updates anstyle from 1.0.5 to 1.0.6

Commits
  • c9dee03 chore: Release
  • 60343d1 docs: Update changelog
  • b8edda7 Merge pull request #171 from epage/ignore-fmt
  • ec33d22 fix(anstyle): Don't display with formatter's settings
  • 93c3dec test(anstyle): Show current fmt behavior
  • 9098545 chore(deps): update compatible (dev)
  • 44e8e4a Merge pull request #169 from joshtriplett/tyop
  • d9265f2 docs(anstream): Fix typo in documentation
  • See full diff in compare view

Updates aws-lc-fips-sys from 0.12.1 to 0.12.3

Commits

Updates aws-lc-rs from 1.6.1 to 1.6.2

Release notes

Sourced from aws-lc-rs's releases.

v1.6.2

What's Changed

Released in aws-lc-fips-sys 0.12.1

Full Changelog: aws/aws-lc-rs@v1.6.1...v1.6.2

Commits

Updates aws-lc-sys from 0.13.0 to 0.13.2

Commits

Updates cc from 1.0.83 to 1.0.88

Release notes

Sourced from cc's releases.

1.0.88

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.87...1.0.88

1.0.87

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.86...1.0.87

1.0.86

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.85...1.0.86

1.0.85

[!IMPORTANT]

This release has been yanked, due to panicking in freeBSD debug build. A release without these issues will be made in the near future.

Sorry, and thanks.

What's Changed

... (truncated)

Commits
  • 561543c Release cc 1.0.88 (#977)
  • 8bda250 feat: move debug logging behind an environment variable (#972)
  • 46eedd0 Fix set_blocking (#975)
  • 022f729 Add /System/iOSSupport to header/library search paths on Mac Catalyst (#961)
  • 35d96f0 Release cc 1.0.87 (#967)
  • faf8f92 Fix use of cc with make <4.3: Clear O_NONBLOCK after compilaton (#966)
  • 271d3d6 add armv8r-none-eabihf (#836)
  • 012226e Support native ARM64 MSVC toolchain, and fallback to x64 if emulation is avai...
  • 3f59e09 fix: only print out debug info if cargo_warnings is true (#960)
  • e814ca5 Added tvos-sim support (#951)
  • Additional commits viewable in compare view

Updates clap_builder from 4.4.18 to 4.5.1

Release notes

Sourced from clap_builder's releases.

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

v4.5.0

No release notes provided.

Changelog

Sourced from clap_builder's changelog.

[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

[4.5.0] - 2024-02-08

Compatibility

  • Update MSRV to 1.74
Commits

Updates clap_derive from 4.4.7 to 4.5.0

Release notes

Sourced from clap_derive's releases.

v4.5.0

No release notes provided.

v4.4.18

[4.4.18] - 2024-01-16

Fixes

  • (error) When lacking usage feature, ensure the list of required arguments is unique

v4.4.17

[4.4.17] - 2024-01-15

Fixes

  • Fix panic! when mixing args_conflicts_with_subcommands with ArgGroup (which is implicit with derive) introduced in 4.4.15

v4.4.16

[4.4.16] - 2024-01-12

Fixes

  • Ensure invalid escape sequences in user-defined strings are correctly stripped when terminal doesn't support color

v4.4.15

[4.4.15] - 2024-01-11

Fixes

  • Improve error for args_conflicts_with_subcommands
  • Ensure we error for args_conflicts_with_subcommands when using subcommand short and long flags

v4.4.14

[4.4.14] - 2024-01-08

Documentation

  • Fix find cookbook entry to allow repeats of flags/options

Features

  • Allow num_args(0) on options which allows making them emulate being a flag for position-tracking flags

v4.4.13

[4.4.13] - 2024-01-04

Documentation

  • Fix link to structopt migration guide

... (truncated)

Changelog

Sourced from clap_derive's changelog.

[4.5.0] - 2024-02-08

Compatibility

  • Update MSRV to 1.74

[4.4.18] - 2024-01-16

Fixes

  • (error) When lacking usage feature, ensure the list of required arguments is unique

[4.4.17] - 2024-01-15

Fixes

  • Fix panic! when mixing args_conflicts_with_subcommands with ArgGroup (which is implicit with derive) introduced in 4.4.15

[4.4.16] - 2024-01-12

Fixes

  • Ensure invalid escape sequences in user-defined strings are correctly stripped when terminal doesn't support color

[4.4.15] - 2024-01-11

Fixes

  • Improve error for args_conflicts_with_subcommands
  • Ensure we error for args_conflicts_with_subcommands when using subcommand short and long flags

[4.4.14] - 2024-01-08

Documentation

  • Fix find cookbook entry to allow repeats of flags/options

Features

  • Allow num_args(0) on options which allows making them emulate being a flag for position-tracking flags

[4.4.13] - 2024-01-04

Documentation

  • Fix link to structopt migration guide

[4.4.12] - 2023-12-28

Performance

... (truncated)

Commits

Updates clap_lex from 0.6.0 to 0.7.0

Changelog

Sourced from clap_lex's changelog.

v0.7.0 (2015-04-30) - BREAKING CHANGE

Bug Fixes

  • from_usage removes bug where usage strings have no help text (ad4e5451, closes #83)

Features

  • MultipleValues
    • add support for minimum and maximum number of values (53f6b8c9)
    • adds support limited number and named values (ae09f05e)
    • implement shorthand for options with multiple values (6669f0a9)
  • arg allow other types besides Vec for multiple value settings (BREAKING CHANGE 0cc2f698, closes #87)
  • usage implement smart usage strings on errors (d77048ef, closes #88)

v0.6.9 (2015-04-29)

Bug Fixes

  • from_usage removes bug where usage strings have no help text (ad4e5451, closes #83)

0.6.8 (2015-04-27)

Bug Fixes

  • help change long help --long=long -> --long (1e25abfc)
  • RequiredArgs required by default args should no longer be required when their exclusions are present (4bb4c3cc)

Features

  • ArgGroups add ability to create arg groups (09eb4d98)

v0.6.7 (2015-04-22)

Bug Fixes

  • from_usage fix bug causing args to not be required (b76129e9)

Features

... (truncated)

Commits

Updates either from 1.9.0 to 1.10.0

Commits
  • ede3c47 Merge pull request #98 from cuviper/release-1.10.0
  • 5fcb289 ci: upgrade to actions/checkout@v4
  • 071f034 Release 1.10.0
  • 254fbf6 Merge pull request #91 from aj-bagwell/master
  • 499b9ed Move the iter methods back to the root for doc order
  • 2a37eba Split factor_iter into owned/ref/mut variations
  • c3178af Fix iter and iter_mut doc tests for MSRV
  • c1ec796 Add a new type for the factored iterator
  • 356d9b6 Move iterator code into a module
  • a6e0026 fix It-o-erator typo
  • Additional commits viewable in compare view

Updates half from 2.3.1 to 2.4.0

Release notes

Sourced from half's releases.

2.4.0

Added

  • Optional rkyv support. Fixes #100, by @​comath.
  • New num-traits implementations: AsPrimitive<f16> for bf16 and AsPrimitive<bf16> for f16, allowing lossy conversions between the two types. By @​charles-r-earp.
  • Cargo.lock added to vcs as is now recommended for library crates.

Fixed

  • Remove some unit NaN conversion sign tests due to non-deterministic hardware. Fixes #103.
  • Redundant import warnings on nightly Rust.
Changelog

Sourced from half's changelog.

[2.4.0] - 2024-02-25

Added

  • Optional rkyv support. Fixes #100, by [@​comath].
  • New num-traits implementations: AsPrimitive<f16> for bf16 and AsPrimitive<bf16> for f16, allowing lossy conversions between the two types. By [@​charles-r-earp].
  • Cargo.lock added to vcs as is now recommended for library crates.

Fixed

  • Remove some unit NaN conversion sign tests due to non-deterministic hardware. Fixes #103.
  • Redundant import warnings on nightly Rust.
Commits

Bumps the firecracker group with 32 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.4.18` | `4.5.1` |
| [syn](https://github.com/dtolnay/syn) | `2.0.48` | `2.0.51` |
| [serde](https://github.com/serde-rs/serde) | `1.0.196` | `1.0.197` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.113` | `1.0.114` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.56` | `1.0.57` |
| [micro_http](https://github.com/firecracker-microvm/micro-http) | ``e75dfa1`` | ``ef43cef`` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.196` | `1.0.197` |
| [nix](https://github.com/nix-rust/nix) | `0.27.1` | `0.28.0` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.1` | `0.11.2` |
| [semver](https://github.com/dtolnay/semver) | `1.0.21` | `1.0.22` |
| [aes](https://github.com/RustCrypto/block-ciphers) | `0.8.3` | `0.8.4` |
| [anstream](https://github.com/rust-cli/anstyle) | `0.6.11` | `0.6.12` |
| [anstyle](https://github.com/rust-cli/anstyle) | `1.0.5` | `1.0.6` |
| [aws-lc-fips-sys](https://github.com/aws/aws-lc-rs) | `0.12.1` | `0.12.3` |
| [aws-lc-rs](https://github.com/awslabs/aws-lc-rs) | `1.6.1` | `1.6.2` |
| [aws-lc-sys](https://github.com/aws/aws-lc-rs) | `0.13.0` | `0.13.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.83` | `1.0.88` |
| [clap_builder](https://github.com/clap-rs/clap) | `4.4.18` | `4.5.1` |
| [clap_derive](https://github.com/clap-rs/clap) | `4.4.7` | `4.5.0` |
| [clap_lex](https://github.com/clap-rs/clap) | `0.6.0` | `0.7.0` |
| [either](https://github.com/rayon-rs/either) | `1.9.0` | `1.10.0` |
| [half](https://github.com/starkat99/half-rs) | `2.3.1` | `2.4.0` |
| [hermit-abi](https://github.com/hermit-os/hermit-rs) | `0.3.4` | `0.3.8` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.2.2` | `2.2.3` |
| [is-terminal](https://github.com/sunfishcode/is-terminal) | `0.4.10` | `0.4.12` |
| [num-traits](https://github.com/rust-num/num-traits) | `0.2.17` | `0.2.18` |
| [ryu](https://github.com/dtolnay/ryu) | `1.0.16` | `1.0.17` |
| [strsim](https://github.com/rapidfuzz/strsim-rs) | `0.10.0` | `0.11.0` |
| [thiserror-impl](https://github.com/dtolnay/thiserror) | `1.0.56` | `1.0.57` |
| [toml](https://github.com/toml-rs/toml) | `0.8.9` | `0.8.10` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.21.1` | `0.22.6` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.5.37` | `0.6.2` |


Updates `clap` from 4.4.18 to 4.5.1
- [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.4.18...clap_complete-v4.5.1)

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

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

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

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

Updates `micro_http` from `e75dfa1` to `ef43cef`
- [Commits](firecracker-microvm/micro-http@e75dfa1...ef43cef)

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

Updates `nix` from 0.27.1 to 0.28.0
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](nix-rust/nix@v0.27.1...v0.28.0)

Updates `env_logger` from 0.11.1 to 0.11.2
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.11.1...v0.11.2)

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

Updates `aes` from 0.8.3 to 0.8.4
- [Commits](RustCrypto/block-ciphers@aes-v0.8.3...aes-v0.8.4)

Updates `anstream` from 0.6.11 to 0.6.12
- [Commits](rust-cli/anstyle@anstream-v0.6.11...anstream-v0.6.12)

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

Updates `aws-lc-fips-sys` from 0.12.1 to 0.12.3
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@aws-lc-fips-sys/v0.12.1...aws-lc-fips-sys/v0.12.3)

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

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

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

Updates `clap_builder` from 4.4.18 to 4.5.1
- [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.4.18...v4.5.1)

Updates `clap_derive` from 4.4.7 to 4.5.0
- [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.4.7...v4.5.0)

Updates `clap_lex` from 0.6.0 to 0.7.0
- [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_lex-v0.6.0...clap_lex-v0.7.0)

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

Updates `half` from 2.3.1 to 2.4.0
- [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.3.1...v2.4.0)

Updates `hermit-abi` from 0.3.4 to 0.3.8
- [Release notes](https://github.com/hermit-os/hermit-rs/releases)
- [Commits](https://github.com/hermit-os/hermit-rs/commits)

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

Updates `is-terminal` from 0.4.10 to 0.4.12
- [Commits](sunfishcode/is-terminal@v0.4.10...v0.4.12)

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

Updates `ryu` from 1.0.16 to 1.0.17
- [Release notes](https://github.com/dtolnay/ryu/releases)
- [Commits](dtolnay/ryu@1.0.16...1.0.17)

Updates `strsim` from 0.10.0 to 0.11.0
- [Release notes](https://github.com/rapidfuzz/strsim-rs/releases)
- [Changelog](https://github.com/rapidfuzz/strsim-rs/blob/main/CHANGELOG.md)
- [Commits](rapidfuzz/strsim-rs@0.10.0...v0.11.0)

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

Updates `toml` from 0.8.9 to 0.8.10
- [Commits](toml-rs/toml@toml-v0.8.9...toml-v0.8.10)

Updates `toml_edit` from 0.21.1 to 0.22.6
- [Commits](toml-rs/toml@v0.21.1...v0.22.6)

Updates `winnow` from 0.5.37 to 0.6.2
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.5.37...v0.6.2)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: syn
  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: micro_http
  dependency-type: direct:production
  dependency-group: firecracker
- dependency-name: serde_derive
  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: env_logger
  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: aes
  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: 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-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_builder
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: clap_derive
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: clap_lex
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: either
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: half
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: hermit-abi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: indexmap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: is-terminal
  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: ryu
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: strsim
  dependency-type: indirect
  update-type: version-update:semver-minor
  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-minor
  dependency-group: firecracker
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 26, 2024
Copy link
Author

dependabot bot commented on behalf of github Mar 4, 2024

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

@dependabot dependabot bot closed this Mar 4, 2024
@dependabot dependabot bot deleted the dependabot/cargo/firecracker-d0e5325db9 branch March 4, 2024 17:02
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants