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

Bump the cargo-deps group with 17 updates #47

Merged
merged 1 commit into from
Oct 2, 2023

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the cargo-deps group with 17 updates:

Package From To
clap 4.4.2 4.4.6
rayon 1.7.0 1.8.0
thiserror 1.0.47 1.0.49
toml 0.7.6 0.8.1
hashbrown 0.14.0 0.14.1
anstyle 1.0.2 1.0.4
anstyle-parse 0.2.1 0.2.2
hermit-abi 0.3.2 0.3.3
indexmap 2.0.0 2.0.2
libc 0.2.147 0.2.148
linux-raw-sys 0.4.5 0.4.8
memchr 2.6.2 2.6.3
proc-macro2 1.0.66 1.0.67
rustix 0.38.11 0.38.15
syn 2.0.29 2.0.37
time 0.3.28 0.3.29
unicode-ident 1.0.11 1.0.12

Updates clap from 4.4.2 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

v4.4.4

[4.4.4] - 2023-09-18

Internal

  • Update terminal_size to 0.3

v4.4.3

[4.4.3] - 2023-09-12

Documentation

  • (derive) Clarify use of attributes within the tutorial
  • Split sections in the builder and derive tutorials into separate modules
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

[4.4.4] - 2023-09-18

Internal

  • Update terminal_size to 0.3

[4.4.3] - 2023-09-12

Documentation

  • (derive) Clarify use of attributes within the tutorial
  • Split sections in the builder and derive tutorials into separate modules
Commits

Updates rayon from 1.7.0 to 1.8.0

Changelog

Sourced from rayon's changelog.

Release rayon 1.8.0 / rayon-core 1.12.0 (2023-09-20)

  • The minimum supported rustc is now 1.63.
  • Added ThreadPoolBuilder::use_current_thread to use the builder thread as part of the new thread pool. That thread does not run the pool's main loop, but it may participate in work-stealing if it yields to rayon in some way.
  • Implemented FromParallelIterator<T> for Box<[T]>, Rc<[T]>, and Arc<[T]>, as well as FromParallelIterator<Box<str>> and ParallelExtend<Box<str>> for String.
  • ThreadPoolBuilder::build_scoped now uses std::thread::scope.
  • The default number of threads is now determined using std::thread::available_parallelism instead of the num_cpus crate.
  • The internal logging facility has been removed, reducing bloat for all users.
  • Many smaller performance tweaks and documentation updates.
Commits

Updates thiserror from 1.0.47 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)

1.0.48

  • Improve implementation of displaying Path values in a generated Display impl (#251, thanks @​mina86)
Commits
  • 54465b7 Release 1.0.49
  • 79704ad Merge pull request 255 from mina86/a
  • 5bfbdae Test docs.rs documentation build in CI
  • f0f303a Prefer core crate in macro expansions
  • 435c7c8 Update actions/checkout@v3 -> v4
  • 5c5f342 Release 1.0.48
  • 490f0ca Merge pull request #254 from dtolnay/gatlink
  • 1a5dbc7 Add link to GAT PR
  • de58088 Ignore uninlined_format_args pedantic clippy lint in test
  • ae642d1 Format clippy allow attribute with rustfmt
  • Additional commits viewable in compare view

Updates toml from 0.7.6 to 0.8.1

Commits
  • d308188 chore: Release
  • af0b01e docs: Update changelog
  • d3df1cf Merge pull request #612 from epage/key
  • a376cfd fix(serde): Allow newtypes for keys
  • 1bdf123 test(serde): Show existing newtype key behavior
  • cb3eed5 chore: Update from '_rust/main'
  • ac51f09 chore(ci): Normalize json5 syntax
  • 86c29de chore(ci): Updaet Renovate schema
  • e82d039 chore: Update from '_rust/main'
  • 4173c8f chore(ci): Don't set patch for MSRV
  • Additional commits viewable in compare view

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 anstyle from 1.0.2 to 1.0.4

Commits

Updates anstyle-parse from 0.2.1 to 0.2.2

Commits

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 libc from 0.2.147 to 0.2.148

Release notes

Sourced from libc's releases.

0.2.148

What's Changed

New Contributors

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

Commits
  • c89f747 libc 0.2.148
  • 8356615 Auto merge of #3322 - shyouhei:feature/shyouhei/RTLD_MAIN_ONLY, r=JohnTitor
  • 10e0724 Auto merge of #3321 - kleisauke:emscripten-update-node-16.20.0, r=JohnTitor
  • ff6a0c6 properly modify the type with ::
  • 837159c add RTLD_MAIN_ONLY
  • 5841067 CI: Update Node.js version to v16.20.0
  • 9447d17 Auto merge of #3313 - devnexen:linux_mman_aarch64_upd, r=JohnTitor
  • cbeb1bd linux glibc/musl and android adding PROT_BTI/PROT_MTE mmap flags for arm64.
  • 92a5d3e Auto merge of #3301 - Dirreke:csky-unknown-linux-gnuabiv2, r=JohnTitor
  • cd4fc66 Auto merge of #3312 - alexcrichton:fix-aarch64-darwin-ucontext-t, r=JohnTitor
  • Additional commits viewable in compare view

Updates linux-raw-sys from 0.4.5 to 0.4.8

Commits
  • 7e56cf9 chore: Release linux-raw-sys version 0.4.8
  • b9a004e Add bindings for LINUX_REBOOT_* and SO_ORIGINAL_DST. (#82) (#84)
  • 1d9c815 chore: Release linux-raw-sys version 0.4.7
  • d685d09 Make a_type and a_val public fields. (#81)
  • 5e1c0ed chore: Release linux-raw-sys version 0.4.6
  • 041d7db Add types and constants for working with Linux's ELF ABI. (#79)
  • f9a21b6 add support for arch csky (#76) (#77)
  • See full diff in compare view

Updates memchr from 2.6.2 to 2.6.3

Commits

Updates proc-macro2 from 1.0.66 to 1.0.67

Release notes

Sourced from proc-macro2's releases.

1.0.67

  • Special handling for the (/*ERROR*/) placeholder that rustc uses for macros that fail to expand (#405)
Commits
  • a803dd1 Release 1.0.67
  • 8bf6937 Delete proc-macro2-fallback crate
  • 60c62dc Merge pull request #406 from dtolnay/error
  • 14a481d Parse rustc's representation of macro expansion error
  • 2e96778 Ignore missing_safety_doc clippy lint
  • 7017480 Merge pull request #404 from dtolnay/honggfuzz
  • 4ec3a42 Re-enable honggfuzz CI
  • 5a225cf Update actions/checkout@v3 -> v4
  • 45ef770 Update ui test suite to nightly-2023-08-29
  • 2cc9ef0 Update afl crate to 0.14
  • Additional commits viewable in compare view

Updates rustix from 0.38.11 to 0.38.15

Commits
  • 707c51e chore: Release rustix version 0.38.15
  • e95edfb Miscellaneous documentation cleanups. (#860)
  • a74f97f Implement more socket options. (#858)
  • 69319a3 Fix procfs on /proc/self with user namespaces (#859)
  • 5f0db52 Add shm_open/shm_unlink (POSIX shared memory) (#848)
  • 77c4aae Reorganize sockopts code and add several more socket options (#855)
  • abd6686 build.rs: fix mips32r6 detection for libc feature switch (#856)
  • a9ecf8d Fix the set/get_socket_timeout timeout on linux_raw (#853)
  • b08519f Handle static PIE in startup_tls_info. (#850)
  • d083603 Add MapFlags::hugetlb_with_size_log2 method (#847)
  • Additional commits viewable in compare view

Updates syn from 2.0.29 to 2.0.37

Release notes

Sourced from syn's releases.

2.0.37

  • Work around incorrect future compatibility warning in rustc 1.74.0-nightly

2.0.36

  • Restore compatibility with --generate-link-to-definition documentation builds (#1514)

2.0.35

  • Make rust-analyzer produce preferred brackets for invocations of Token! macro (#1510, #1512)

2.0.34

  • Documentation improvements

2.0.33

  • Special handling for the (/*ERROR*/) placeholder that rustc uses for macros that fail to expand

2.0.32

2.0.31

2.0.30

Commits
  • 9681088 Release 2.0.37
  • fbe3bc2 Work around unknown_lints warning on rustc older than 1.64
  • 75cf912 Ignore more repr_transparent_external_private_fields
  • 299c782 Ignore false repr_transparent_external_private_fields FCW in generated code
  • ef6476c Release 2.0.36
  • 6ae1a97 Merge pull request #1514 from dtolnay/pubnotdoc
  • 7bfef4b Work around doc breakage in generate-link-to-definition mode
  • ce360ff Release 2.0.35
  • 23736bd Merge pull request #1512 from dtolnay/tokendoc
  • 6f6b004 Improve docs of Token! macro
  • Additional commits viewable in compare view

Updates time from 0.3.28 to 0.3.29

Release notes

Sourced from time's releases.

v0.3.29

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.29 [2023-09-24]

Added

  • Niche value optimization for Date has been added. Both Date and Option<Date> are four bytes.
  • Unit conversions have been added. It is now possible to write Second::per(Day), which returns the number of seconds in one day. See the types in the time::convert module for more information.

Changed

  • The diagnostic for --cfg unsound_local_offset has been removed.
  • #![feature(no_coverage)] was previously used internally for code coverage. It is no longer used, so it has been removed.
  • The default value for modifier::OffsetHour has been changed. This was unintentionally changed in v0.3.17 and went unnoticed until now. The sign is now only present if needed by default, as was the case previously. This does not affect any situation where format_description! or format_description::parse is used.

Fixed

  • Adding or subtracting a std::time::Duration to/from an OffsetDateTime will not result in integer overflow internally. It will still panic if the result is out of range.
Commits
  • c96bb1a v0.3.29 release
  • 6d0b341 Rework, expose unit conversions
  • 313f980 Add niche value optimization to Date
  • bcbca6e Partially move to rstest
  • 9abaf30 Revert default for OffsetHour modifier
  • 6248992 Address lints
  • 5b48552 Avoid integer overflow in arithmetic
  • 5813d61 Remove unused feature(no_coverage) opt-in (#622)
  • 6aa8db5 Require internal macros be explicitly imported
  • 5aa84bd Eliminate use of ensure_value_in_range!
  • Additional commits viewable in compare view

Updates unicode-ident from 1.0.11 to 1.0.12

Release notes

Sourced from unicode-ident's releases.

1.0.12

  • Update to Unicode 15.1.0 (#25)
Commits
  • ff4d27c Release 1.0.12
  • 9e4780e Update crate-level rustdoc static storage table
  • b4e9dd5 Merge pull request #25 from dtolnay/unicode
  • 0bb8a59 Update static data sizes
  • 6d03a92 Disable unicode-xid comparison test
  • 69a5e2c Update to Unicode 15.1.0
  • 0eb7abf Update actions/checkout@v3 -> v4
  • 24db477 Raise minimum tested compiler to 1.70
  • 28d69d6 Raise minimum tested compiler to 1.65
  • ee161b1 Revert "Temporarily disable -Zrandomize-layout due to rustc ICE"
  • 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 merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the cargo-deps group with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.7.0` | `1.8.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.47` | `1.0.49` |
| [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` |
| [hashbrown](https://github.com/rust-lang/hashbrown) | `0.14.0` | `0.14.1` |
| [anstyle](https://github.com/rust-cli/anstyle) | `1.0.2` | `1.0.4` |
| [anstyle-parse](https://github.com/rust-cli/anstyle) | `0.2.1` | `0.2.2` |
| [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` |
| [libc](https://github.com/rust-lang/libc) | `0.2.147` | `0.2.148` |
| [linux-raw-sys](https://github.com/sunfishcode/linux-raw-sys) | `0.4.5` | `0.4.8` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.6.2` | `2.6.3` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.66` | `1.0.67` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.11` | `0.38.15` |
| [syn](https://github.com/dtolnay/syn) | `2.0.29` | `2.0.37` |
| [time](https://github.com/time-rs/time) | `0.3.28` | `0.3.29` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.11` | `1.0.12` |


Updates `clap` from 4.4.2 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@clap_complete-v4.4.2...v4.4.6)

Updates `rayon` from 1.7.0 to 1.8.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.7.0...rayon-core-v1.8.0)

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

Updates `toml` from 0.7.6 to 0.8.1
- [Commits](toml-rs/toml@toml-v0.7.6...toml-v0.8.1)

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 `anstyle` from 1.0.2 to 1.0.4
- [Commits](rust-cli/anstyle@anstyle-wincon-v1.0.2...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 `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 `libc` from 0.2.147 to 0.2.148
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](rust-lang/libc@0.2.147...0.2.148)

Updates `linux-raw-sys` from 0.4.5 to 0.4.8
- [Commits](sunfishcode/linux-raw-sys@v0.4.5...v0.4.8)

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

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

Updates `rustix` from 0.38.11 to 0.38.15
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Commits](bytecodealliance/rustix@v0.38.11...v0.38.15)

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

Updates `time` from 0.3.28 to 0.3.29
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.28...v0.3.29)

Updates `unicode-ident` from 1.0.11 to 1.0.12
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](dtolnay/unicode-ident@1.0.11...1.0.12)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: rayon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: hashbrown
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: anstyle
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: anstyle-parse
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: hermit-abi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: indexmap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: linux-raw-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: memchr
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: syn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: time
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: unicode-ident
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 1, 2023
@dependabot dependabot bot assigned b-n Oct 1, 2023
@b-n b-n merged commit 019047c into main Oct 2, 2023
2 checks passed
@b-n b-n deleted the dependabot/cargo/cargo-deps-9622ad52e8 branch October 2, 2023 06:27
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.

None yet

1 participant