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 26 updates #56

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 16, 2023

Bumps the firecracker group with 26 updates:

Package From To
clap 4.4.4 4.4.6
libc 0.2.148 0.2.149
serde 1.0.188 1.0.189
thiserror 1.0.48 1.0.49
cargo_toml 0.16.0 0.16.3
regex 1.9.5 1.10.2
userfaultfd 0.6.1 0.7.0
aes-gcm 0.10.2 0.10.3
aho-corasick 1.1.0 1.1.2
anstyle 1.0.3 1.0.4
anstyle-parse 0.2.1 0.2.2
byteorder 1.4.3 1.5.0
errno 0.3.3 0.3.5
hashbrown 0.14.0 0.14.1
hermit-abi 0.3.2 0.3.3
indexmap 2.0.0 2.0.2
libm 0.2.7 0.2.8
memchr 2.6.3 2.6.4
num-traits 0.2.16 0.2.17
proc-macro2 1.0.67 1.0.69
proptest 1.2.0 1.3.1
rustix 0.37.23 0.37.25
semver 1.0.18 1.0.20
toml 0.8.0 0.8.2
winapi-util 0.1.5 0.1.6
winnow 0.5.15 0.5.17

Updates clap from 4.4.4 to 4.4.6

Release notes

Sourced from clap's releases.

v4.4.6

[4.4.6] - 2023-09-28

Internal

  • Upgrade anstream

v4.4.5

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
Changelog

Sourced from clap's changelog.

[4.4.6] - 2023-09-28

Internal

  • Upgrade anstream

[4.4.5] - 2023-09-25

Fixes

  • (parser) When inferring subcommand name or long_flag, allow ambiguous-looking matches that unambiguously map back to the same command
  • (parser) When inferring subcommand long_flag, don't panic
  • (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
Commits

Updates libc from 0.2.148 to 0.2.149

Release notes

Sourced from libc's releases.

0.2.149

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.148...0.2.149

Commits
  • d80e8bd Auto merge of #3360 - vita-rust:release-0.2.149, r=JohnTitor
  • 017bf5f Auto merge of #3373 - SteveLauC:close_range, r=JohnTitor
  • 14ef2e5 Auto merge of #3335 - androm3da:bcain/sa_onstack, r=JohnTitor
  • 7b9e367 fmt
  • 173757d feat: add close_range for glibc
  • c7a860d Auto merge of #3370 - NordSecurity:add_apple_tvos_support, r=JohnTitor
  • 4cdc32e Auto merge of #3325 - Vtewari2311:libc-hurd-latest, r=JohnTitor
  • aa065c6 Auto merge of #3372 - SteveLauC:execveat, r=JohnTitor
  • d3910f6 add execveat for glibc
  • aab9d70 Fix apple tvos support
  • Additional commits viewable in compare view

Updates serde from 1.0.188 to 1.0.189

Release notes

Sourced from serde's releases.

v1.0.189

  • Fix "cannot infer type" error when internally tagged enum contains untagged variant (#2613, thanks @​ahl)
Commits
  • e94fc65 Release 1.0.189
  • b908487 Remove double nesting of first_attempt
  • 2a7c7fa Merge pull request #2613 from ahl/fix-untagged-plus-simple
  • e302e15 Merge pull request #2625 from marcospb19/add-csv-to-the-list
  • 1cbea89 Add CSV to the formats list
  • 37a3285 Update ui test suite to nightly-2023-10-06
  • 8c4aad3 Clean up unneeded raw strings in test
  • 1774794 Resolve needless_raw_string_hashes clippy lint in test
  • 1af23f1 Test docs.rs documentation build in CI
  • 94fbc3d fix clippy
  • Additional commits viewable in compare view

Updates thiserror from 1.0.48 to 1.0.49

Release notes

Sourced from thiserror's releases.

1.0.49

  • Access libcore types through ::core in generated code (#255, thanks @​mina86)
Commits

Updates cargo_toml from 0.16.0 to 0.16.3

Commits

Updates regex from 1.9.5 to 1.10.2

Changelog

Sourced from regex's changelog.

1.10.2 (2023-10-16)

This is a new patch release that fixes a search regression where incorrect matches could be reported.

Bug fixes:

1.10.1 (2023-10-14)

This is a new patch release with a minor increase in the number of valid patterns and a broadening of some literal optimizations.

New features:

  • FEATURE 04f5d7be: Loosen ASCII-compatible rules such that regexes like (?-u:☃) are now allowed.

Performance improvements:

  • PERF 8a8d599f: Broader the reverse suffix optimization to apply in more cases.

1.10.0 (2023-10-09)

This is a new minor release of regex that adds support for start and end word boundary assertions. That is, \< and \>. The minimum supported Rust version has also been raised to 1.65, which was released about one year ago.

The new word boundary assertions are:

  • \< or \b{start}: a Unicode start-of-word boundary (\W|\A on the left, \w on the right).
  • \> or \b{end}: a Unicode end-of-word boundary (\w on the left, \W|\z on the right)).
  • \b{start-half}: half of a Unicode start-of-word boundary (\W|\A on the left).
  • \b{end-half}: half of a Unicode end-of-word boundary (\W|\z on the right).

The \< and \> are GNU extensions to POSIX regexes. They have been added to the regex crate because they enjoy somewhat broad support in other regex engines as well (for example, vim). The \b{start} and \b{end} assertions are aliases for \< and \>, respectively.

The \b{start-half} and \b{end-half} assertions are not found in any

... (truncated)

Commits
  • 5f1f1c8 1.10.2
  • 1a54a82 deps: bump regex-automata to 0.4.3
  • 61242b1 regex-automata-0.4.3
  • 50fe7d1 changelog: 1.10.2
  • eb950f6 automata/meta: revert broadening of reverse suffix optimization
  • e7bd19d regex-lite-0.1.5
  • 0086dec lite: fix stack overflow test
  • 4ae1472 tests: fix compilation of doctests on 32-bit architectures
  • cd79881 regex-lite-0.1.4
  • 466e42c lite: fix stack overflow in NFA compiler
  • Additional commits viewable in compare view

Updates userfaultfd from 0.6.1 to 0.7.0

Release notes

Sourced from userfaultfd's releases.

0.2.0 crates.io release

  • Removed the compile-time Linux version check, and replaced it with a Cargo feature.

    The Linux version check was overly restrictive, even on systems that did have the right kernel version installed but had older headers in /usr/include/linux. Beyond that, this check made it more difficult to compile on a different host than what's targeted.

    There is now a linux4_14 feature flag on userfaultfd-sys, which turns on and tests the extra constants available in that version. Since userfaultfd did not make use of any of those newer features, it doesn't have a feature flag yet.

    Applications should take care when initializing with UffdBuilder to specify the features and ioctls they require, so that an unsupported version will be detected at runtime.

0.1.0 crates.io release

0.1.0 (2020-04-07)

  • Initial public release of userfaultfd-rs.
Commits

Updates aes-gcm from 0.10.2 to 0.10.3

Commits

Updates aho-corasick from 1.1.0 to 1.1.2

Commits
  • d84a507 1.1.2
  • 0c3802f dfa: fix performance bug when building a DFA
  • 12025c5 doc: add a FIXME about a perf problem
  • 3c475c5 1.1.1
  • 3c811c2 teddy: replace _mm_extract_epi64 with transmute
  • 3ed2c38 benchmarks: start work on a more curated set of benchmarks
  • dd84b6d benchmarks: rename 'curated' to 'regexcurated'
  • See full diff in compare view

Updates anstyle from 1.0.3 to 1.0.4

Commits

Updates anstyle-parse from 0.2.1 to 0.2.2

Commits

Updates byteorder from 1.4.3 to 1.5.0

Commits
  • ec068ee 1.5.0
  • 0cfb84d cargo: a few small fixups
  • 62b0e31 changelog: add a note about it not being updated
  • dd41ee2 msrv: bump to Rust 1.60
  • 52cc70c safety: verify alignment requirements of floats vs ints
  • c0b6678 impl: remove unsafe code from read_uint and read_uint128 methods
  • 1e2d8b0 impl: eliminate unsafe_write_num_bytes
  • 368cb55 impl: refactor write_slice macro slightly
  • c01f0fe impl: eliminate special case checking target_endian
  • 3409ee1 perf: convert endianess while reading slice in a single pass
  • Additional commits viewable in compare view

Updates errno from 0.3.3 to 0.3.5

Changelog

Sourced from errno's changelog.

[0.3.5] - 2023-10-08

  • Use __errno_location on DragonFly BSD #82

[0.3.4] - 2023-10-01

  • Add GNU/Hurd support #80
Commits

Updates hashbrown from 0.14.0 to 0.14.1

Changelog

Sourced from hashbrown's changelog.

[v0.14.1] - 2023-09-28

Added

  • Allow serializing HashMaps that use a custom allocator. (#449)

Changed

  • Use the Equivalent trait from the equivalent crate. (#442)
  • Slightly improved performance of table resizing. (#451)
  • Relaxed MSRV to 1.63.0. (#457)
  • Removed Clone requirement from custom allocators. (#468)

Fixed

  • Fixed custom allocators being leaked in some situations. (#439, #465)
Commits
  • 844b337 Auto merge of #471 - Amanieu:release-0.14.1, r=Amanieu
  • f08765f Prepare release of v0.14.1
  • a24996e Auto merge of #469 - JustForFun88:doc_all_find_isert, r=Amanieu
  • eb9e772 Doc all find_ functions
  • fe81cad Auto merge of #468 - JustForFun88:make_alloc_not_clone, r=Amanieu
  • 91d3675 Fix mistake with prepare_resize and use const instead of new()
  • 1167d19 Make allocator not clone and document all changes
  • a33acbe Auto merge of #465 - JustForFun88:fix_bugs_clone_from, r=Amanieu
  • 8a4a1c7 Cange forget to ScopeGuard::into_inner
  • ec75914 Auto merge of #467 - JustForFun88:remove_cross_toml, r=Amanieu
  • Additional commits viewable in compare view

Updates hermit-abi from 0.3.2 to 0.3.3

Commits
  • 7c5fd16 chore: release hermit-abi 0.3.3
  • 3408237 feat(examples): add webserver
  • 266887c feat(examples): add fuse_test
  • da81b28 feat(abi): add syscalls for directories
  • 8e1d4b9 style: sort Cargo.toml
  • 07b05aa Merge pull request #481 from mkroening/nightly-2023-09-15
  • 7cdf9c7 chore: upgrade to nightly-2023-09-15
  • 90f3c0c Merge pull request #479 from hermit-os/dependabot/github_actions/docker/build...
  • 44836f7 Merge pull request #478 from hermit-os/dependabot/github_actions/docker/login...
  • 134daff build(deps): Bump docker/build-push-action from 4 to 5
  • Additional commits viewable in compare view

Updates indexmap from 2.0.0 to 2.0.2

Changelog

Sourced from indexmap's changelog.

  • 2.0.2

    • The hashbrown dependency has been updated to version 0.14.1 to complete the support for Rust 1.63.
  • 2.0.1

    • MSRV: Rust 1.63.0 is now supported as well, pending publication of hashbrown's relaxed MSRV (or use cargo --ignore-rust-version).
Commits
  • 67e67dd Merge pull request #277 from cuviper/release-2.0.2
  • 9de727d Release 2.0.2 with complete MSRV 1.63
  • fbd129f Merge pull request #276 from cuviper/release-2.0.1
  • 9dcae76 Release 2.0.1 with rust-version = "1.63"
  • 2eaf59c Merge pull request #275 from cuviper/safe-swap
  • 8e03753 Use RawTable::get_many_mut for safe swap_indices
  • 0604c5b Merge pull request #273 from your-diary/docs/indexset
  • 77c58aa Improve explanation about IndexSet's complexity.
  • 9469a1b Merge pull request #272 from daxpedda/minimal-versions
  • 8360847 Test direct-minimal-versions
  • Additional commits viewable in compare view

Updates libm from 0.2.7 to 0.2.8

Commits

Updates memchr from 2.6.3 to 2.6.4

Commits

Updates num-traits from 0.2.16 to 0.2.17

Changelog

Sourced from num-traits's changelog.

Release 0.2.17 (2023-10-07)

Contributors: @​robamu

Commits

Updates proc-macro2 from 1.0.67 to 1.0.69

Release notes

Sourced from proc-macro2's releases.

1.0.69

  • Fix Span::source_text() bug causing panics or incorrect source text (#410)

1.0.68

  • Fix panic in Span::source_text() when source contains multibyte characters (#408)
Commits
  • 937bbcd Release 1.0.69
  • 42dc36e Merge pull request #412 from dtolnay/sourcetext
  • 6461c2d Add out-of-order call to source_text test
  • c4c3251 Explain source_text implementation approach
  • 31b14c3 Cache byte offsets computed from a char index
  • 0e15461 Make FileInfo mut in source_text to allow amortization of char indices
  • 90b8e1e Merge pull request #411 from dtolnay/sourcetext
  • 137ae0a Fix source_text treating span.lo as byte offset not char index
  • 4c0bd28 Add regression test for issue 410
  • 12eddc0 Reword explanation of SourceMap initial value
  • Additional commits viewable in compare view

Updates proptest from 1.2.0 to 1.3.1

Commits
  • 0b4ffe8 [Release] 1.3.1 -- fix for incompatible bit-set/bit-vec versions (#375)
  • 99bdf24 [Release] 1.3.0 (#373)
  • 7bfc889 Merge pull request #357 from tzemanovic/tomas/clear-break-dead-code
  • eb9db9d Merge branch 'master' into tomas/clear-break-dead-code
  • 370b3a0 Permit use of (?-u) in byte-regex strategies (#336) (#337)
  • e395e8c Add PathBuf Arbitrary impl with tests (#368)
  • fcccad0 Book tips and best practices (#367)
  • fc3be95 Merge pull request #355 from tzemanovic/tomas/fix-sm-logs
  • 7292965 Merge pull request #360 from psychon/remove-byteorder
  • 466d59d [proptest] silence clippy::arc_with_non_send_sync warning with prop_oneof (#363)
  • Additional commits viewable in compare view

Updates rustix from 0.37.23 to 0.37.25

Commits

Updates semver from 1.0.18 to 1.0.20

Release notes

Sourced from semver's releases.

1.0.20

  • Add a method for comparing versions by precedence (#305)

1.0.19

Commits
  • 55fa2ca Release 1.0.20
  • 5feccc0 Merge pull request #305 from dtolnay/precedence
  • 83aaaf0 Add a method for precedence comparison of Versions
  • 83154ea Test docs.rs documentation build in CI
  • 72a6b5a Release 1.0.19
  • 83abc7f Relocate comparator parse testing
  • 2d34e8f Touch up PR 299 test cases
  • 5e09329 More comprehensible excessive version comparator test
  • 473209f Merge pull request #299 from CXWorks/master
  • cb07901 Update actions/checkout@v3 -> v4
  • Additional commits viewable in compare view

Updates toml from 0.8.0 to 0.8.2

Commits
  • fe65b2b chore: Release
  • ed597eb chore: Release
  • 257a0fd docs: Update changelog
  • 4b44f53 Merge pull request #617 from epage/update
  • 7eaf286 fix(parser): Failed on mixed inline tables
  • e1f2037 test: Verify with latest data
  • 2f9253c chore: Update toml-test
  • c9b481c test(toml): Ensure tables are used for validation
  • 43d7f29 Merge pull request #615 from toml-rs/renovate/actions-checkout-4.x
  • ef9b837 chore(deps): update actions/checkout action to v4
  • Additional commits viewable in compare view

Updates winapi-util from 0.1.5 to 0.1.6

Commits

Updates winnow from 0.5.15 to 0.5.17

Changelog

Sourced from winnow's changelog.

[0.5.17] - 2023-10-13

Documentation

  • Provide lexer/parser example with details on handling of custom tokens

[0.5.16] - 2023-10-06

Fixes

  • Correctly calculate offset_from for non-byte slices
Commits
  • 897cd5e chore: Release
  • 9410634 docs: Update changelog
  • db577d9 Merge pull request #348 from epage/custom
  • c878116 docs(topic): Expand on custom tokens
  • e7e9b52 docs(examples): Add lexer/parser example
  • ecca81d fix: Allow custom tokens for Fn ContainsToken
  • 03c26b4 test(examples): Make arithmetic benches 1:1
  • 628760d refactor(example): Clean up main
  • 921a2a3 test(examples): Align arithmetic tests
  • eac1456 refactor(example): Further clean up of arithmetic
  • Additional commits viewable in compare view

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • `@dependabot cancel...

Description has been truncated

Bumps the firecracker group with 26 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.4.4` | `4.4.6` |
| [libc](https://github.com/rust-lang/libc) | `0.2.148` | `0.2.149` |
| [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.189` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` |
| [cargo_toml](https://gitlab.com/lib.rs/cargo_toml) | `0.16.0` | `0.16.3` |
| [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.10.2` |
| [userfaultfd](https://github.com/bytecodealliance/userfaultfd-rs) | `0.6.1` | `0.7.0` |
| [aes-gcm](https://github.com/RustCrypto/AEADs) | `0.10.2` | `0.10.3` |
| [aho-corasick](https://github.com/BurntSushi/aho-corasick) | `1.1.0` | `1.1.2` |
| [anstyle](https://github.com/rust-cli/anstyle) | `1.0.3` | `1.0.4` |
| [anstyle-parse](https://github.com/rust-cli/anstyle) | `0.2.1` | `0.2.2` |
| [byteorder](https://github.com/BurntSushi/byteorder) | `1.4.3` | `1.5.0` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.3` | `0.3.5` |
| [hashbrown](https://github.com/rust-lang/hashbrown) | `0.14.0` | `0.14.1` |
| [hermit-abi](https://github.com/hermitcore/hermit-rs) | `0.3.2` | `0.3.3` |
| [indexmap](https://github.com/bluss/indexmap) | `2.0.0` | `2.0.2` |
| [libm](https://github.com/rust-lang/libm) | `0.2.7` | `0.2.8` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.6.3` | `2.6.4` |
| [num-traits](https://github.com/rust-num/num-traits) | `0.2.16` | `0.2.17` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.67` | `1.0.69` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.2.0` | `1.3.1` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.37.23` | `0.37.25` |
| [semver](https://github.com/dtolnay/semver) | `1.0.18` | `1.0.20` |
| [toml](https://github.com/toml-rs/toml) | `0.8.0` | `0.8.2` |
| [winapi-util](https://github.com/BurntSushi/winapi-util) | `0.1.5` | `0.1.6` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.5.15` | `0.5.17` |


Updates `clap` from 4.4.4 to 4.4.6
- [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.4...v4.4.6)

Updates `libc` from 0.2.148 to 0.2.149
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](rust-lang/libc@0.2.148...0.2.149)

Updates `serde` from 1.0.188 to 1.0.189
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.188...v1.0.189)

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

Updates `cargo_toml` from 0.16.0 to 0.16.3
- [Commits](https://gitlab.com/lib.rs/cargo_toml/commits/v0.16.3)

Updates `regex` from 1.9.5 to 1.10.2
- [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.9.5...1.10.2)

Updates `userfaultfd` from 0.6.1 to 0.7.0
- [Release notes](https://github.com/bytecodealliance/userfaultfd-rs/releases)
- [Changelog](https://github.com/bytecodealliance/userfaultfd-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bytecodealliance/userfaultfd-rs/commits)

Updates `aes-gcm` from 0.10.2 to 0.10.3
- [Commits](RustCrypto/AEADs@aes-gcm-v0.10.2...aes-gcm-v0.10.3)

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

Updates `anstyle` from 1.0.3 to 1.0.4
- [Commits](rust-cli/anstyle@v1.0.3...v1.0.4)

Updates `anstyle-parse` from 0.2.1 to 0.2.2
- [Commits](rust-cli/anstyle@anstyle-parse-v0.2.1...anstyle-parse-v0.2.2)

Updates `byteorder` from 1.4.3 to 1.5.0
- [Changelog](https://github.com/BurntSushi/byteorder/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/byteorder@1.4.3...1.5.0)

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

Updates `hashbrown` from 0.14.0 to 0.14.1
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](rust-lang/hashbrown@v0.14.0...v0.14.1)

Updates `hermit-abi` from 0.3.2 to 0.3.3
- [Release notes](https://github.com/hermitcore/hermit-rs/releases)
- [Commits](hermit-os/hermit-rs@hermit-abi-0.3.2...hermit-abi-0.3.3)

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

Updates `libm` from 0.2.7 to 0.2.8
- [Changelog](https://github.com/rust-lang/libm/blob/master/CHANGELOG.md)
- [Commits](rust-lang/libm@0.2.7...0.2.8)

Updates `memchr` from 2.6.3 to 2.6.4
- [Commits](BurntSushi/memchr@2.6.3...2.6.4)

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

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

Updates `proptest` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/master/CHANGELOG.md)
- [Commits](proptest-rs/proptest@v1.2.0...v1.3.1)

Updates `rustix` from 0.37.23 to 0.37.25
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Commits](bytecodealliance/rustix@v0.37.23...v0.37.25)

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

Updates `toml` from 0.8.0 to 0.8.2
- [Commits](toml-rs/toml@toml-v0.8.0...toml-v0.8.2)

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

Updates `winnow` from 0.5.15 to 0.5.17
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.5.15...v0.5.17)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: cargo_toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: userfaultfd
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: aes-gcm
  dependency-type: indirect
  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: 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: byteorder
  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: hashbrown
  dependency-type: indirect
  update-type: version-update:semver-patch
  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: libm
  dependency-type: indirect
  update-type: version-update:semver-patch
  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: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: proptest
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: semver
  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: winapi-util
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Oct 23, 2023

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

@dependabot dependabot bot closed this Oct 23, 2023
@dependabot dependabot bot deleted the dependabot/cargo/firecracker-f77d24bd0c branch October 23, 2023 16:40
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