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-dependencies group across 1 directory with 15 updates #307

Merged
merged 5 commits into from
Jun 6, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 3, 2024

Bumps the cargo-dependencies group with 15 updates in the / directory:

Package From To
anyhow 1.0.82 1.0.86
base64 0.21.7 0.22.0
blocking 1.5.1 1.6.1
hyper-util 0.1.3 0.1.5
rmp-serde 1.2.0 1.3.0
rmpv 1.0.2 1.3.0
serde 1.0.198 1.0.203
serde_json 1.0.116 1.0.117
strum 0.24.1 0.26.2
sysinfo 0.29.11 0.30.11
termwiz 0.20.0 0.22.0
tokio 1.37.0 1.38.0
tokio-util 0.7.10 0.7.11
toml 0.8.12 0.8.13
vmap 0.5.1 0.6.3

Updates anyhow from 1.0.82 to 1.0.86

Release notes

Sourced from anyhow's releases.

1.0.86

  • Fix parse error in ensure! with non-literal after minus sign (#373)

1.0.85

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#368, #371)

1.0.84

  • Disallow calling ensure! through a Not impl for a type that is not bool (#367)

1.0.83

  • Integrate compile-time checking of cfgs (#363)
Commits
  • 8ea1819 Release 1.0.86
  • 0a1b405 Merge pull request #373 from dtolnay/minusneg
  • e0c74f2 Ensure $:literal never matches negative literal
  • 013c66e Fix parse error with non-literal after minus sign
  • ca7aff7 Add binary operator ensure tests
  • 2737bbe Release 1.0.85
  • 82b8b34 Merge pull request #371 from dtolnay/split
  • ad78d70 Preserve more token spans in expression parser
  • 5cce406 Parse comparison operators before other binary operators
  • 7205394 Merge pull request #369 from dtolnay/tokensplit
  • Additional commits viewable in compare view

Updates base64 from 0.21.7 to 0.22.0

Changelog

Sourced from base64's changelog.

0.22.0

  • DecodeSliceError::OutputSliceTooSmall is now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning that Engine::decode_slice can now be used with exactly-sized output slices. As part of this, Engine::internal_decode now returns DecodeSliceError instead of DecodeError, but that is not expected to affect any external callers.
  • DecodeError::InvalidLength now refers specifically to the number of valid symbols being invalid (i.e. len % 4 == 1), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for either InvalidLength or InvalidByte being appropriate.
  • Decoding is somewhat faster (5-10%)
Commits
  • 5d70ba7 Merge pull request #269 from marshallpierce/mp/decode-precisely
  • efb6c00 Release notes
  • 2b91084 Add some tests to boost coverage
  • 9e9c7ab Engine::internal_decode now returns DecodeSliceError
  • a8a60f4 Decode main loop improvements
  • a25be06 Simplify leftover output writes
  • 9979cc3 Keep morsels as separate bytes
  • 37670c5 Bump dev toolchain version (#268)
  • See full diff in compare view

Updates blocking from 1.5.1 to 1.6.1

Release notes

Sourced from blocking's releases.

v1.6.1

  • Remove our dependency on the async-lock crate. (#59)

v1.6.0

  • Panics that occur in unblocked functions are now propagated to the calling function. (#58)
  • Add a new optional tracing feature. When enabled, this feature adds logging to the implementation. By default it is disabled. (#60)
  • Remove the unused fastrand dependency. (#61)
Changelog

Sourced from blocking's changelog.

Version 1.6.1

  • Remove our dependency on the async-lock crate. (#59)

Version 1.6.0

  • Panics that occur in unblocked functions are now propagated to the calling function. (#58)
  • Add a new optional tracing feature. When enabled, this feature adds logging to the implementation. By default it is disabled. (#60)
  • Remove the unused fastrand dependency. (#61)
Commits

Updates hyper-util from 0.1.3 to 0.1.5

Release notes

Sourced from hyper-util's releases.

v0.1.5

What's Changed

  • Add server::graceful::GracefulShutdown helper to coordinate over many connections.
  • Add server::conn::auto::Connection::into_owned() to unlink lifetime from Builder.
  • Allow service module to be available with only service feature enabled.

New Contributors

Full Changelog: hyperium/hyper-util@v0.1.4...v0.1.5

v0.1.4

What's Changed

  • Add initial_max_send_streams() to legacy client builder
  • Add max_pending_accept_reset_streams() to legacy client builder
  • Add max_headers(usize) to auto server builder
  • Add http1_onl() and http2_only() to auto server builder
  • Add connection capturing API to legacy client
  • Add impl Connection for TokioIo
  • Fix graceful shutdown hanging on reading the HTTP version

New Contributors

Full Changelog: hyperium/hyper-util@v0.1.3...v0.1.4

Changelog

Sourced from hyper-util's changelog.

0.1.5 (2024-05-28)

  • Add server::graceful::GracefulShutdown helper to coordinate over many connections.
  • Add server::conn::auto::Connection::into_owned() to unlink lifetime from Builder.
  • Allow service module to be available with only service feature enabled.

0.1.4 (2024-05-24)

  • Add initial_max_send_streams() to legacy client builder
  • Add max_pending_accept_reset_streams() to legacy client builder
  • Add max_headers(usize) to auto server builder
  • Add http1_onl() and http2_only() to auto server builder
  • Add connection capturing API to legacy client
  • Add impl Connection for TokioIo
  • Fix graceful shutdown hanging on reading the HTTP version
Commits
  • 195e312 v0.1.5
  • bb5c148 feat: add GracefulShutdown helper (#127)
  • 97714e5 fix compile failure for legacy::Error
  • b24f563 feat(service): relax service module feature (#109)
  • dd6466b refactor: improve fmt::Debug for legacy::Error (#99)
  • 8f29948 feat: add auto Connection::into_owned
  • de96999 chore: set rust-version in Cargo.toml (#126)
  • 6d7da1a refactor(client): replace deprecated numeric api with primitive one (#125)
  • 3f6a92e v0.1.4
  • 1635bcc feat: add {http1,http2}_only for auto conn (#111)
  • Additional commits viewable in compare view

Updates rmp-serde from 1.2.0 to 1.3.0

Commits

Updates rmpv from 1.0.2 to 1.3.0

Commits

Updates serde from 1.0.198 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)
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.116 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)
Commits

Updates strum from 0.24.1 to 0.26.2

Release notes

Sourced from strum's releases.

v0.26.2

What's Changed

New Contributors

Full Changelog: Peternator7/strum@v0.26.1...v0.26.2

v0.26.1

0.26.1

  • #325: use core instead of std in VariantArray.

0.26.0

Breaking Changes

  • The EnumVariantNames macro has been renamed VariantNames. The deprecation warning should steer you in the right direction for fixing the warning.
  • The Iterator struct generated by EnumIter now has new bounds on it. This shouldn't break code unless you manually added the implementation in your code.
  • Display now supports format strings using named fields in the enum variant. This should be a no-op for most code. However, if you were outputting a string like "Hello {field}", this will now be interpretted as a format string.
  • EnumDiscriminant now inherits the repr and discriminant values from your main enum. This makes the discriminant type closer to a mirror of the original and that's always the goal.

New features

  • The VariantArray macro has been added. This macro adds an associated constant VARIANTS to your enum. The constant is a &'static [Self] slice so that you can access all the variants of your enum. This only works on enums that only have unit variants.

    use strum::VariantArray;
    #[derive(Debug, VariantArray)]
    enum Color {
    Red,
    Blue,
    Green,

... (truncated)

Changelog

Sourced from strum's changelog.

0.26.2

  • #337: Fix missing generic impls for EnumTryAs
  • #334: Support prefix in AsRefStr. Technically a breaking change, but prefix was just added in 0.26.0 so it's a newer feature and it makes the feature more consisent in general.

0.26.1

  • #325: use core instead of std in VariantArray.

0.26.0

Breaking Changes

  • The EnumVariantNames macro has been renamed VariantNames. The deprecation warning should steer you in the right direction for fixing the warning.
  • The Iterator struct generated by EnumIter now has new bounds on it. This shouldn't break code unless you manually added the implementation in your code.
  • Display now supports format strings using named fields in the enum variant. This should be a no-op for most code. However, if you were outputting a string like "Hello {field}", this will now be interpretted as a format string.
  • EnumDiscriminant now inherits the repr and discriminant values from your main enum. This makes the discriminant type closer to a mirror of the original and that's always the goal.

New features

  • The VariantArray macro has been added. This macro adds an associated constant VARIANTS to your enum. The constant is a &'static [Self] slice so that you can access all the variants of your enum. This only works on enums that only have unit variants.

    use strum::VariantArray;
    #[derive(Debug, VariantArray)]
    enum Color {
    Red,
    Blue,
    Green,
    }
    fn main() {
    println!("{:?}", Color::VARIANTS); // prints: ["Red", "Blue", "Green"]
    }

  • The EnumTable macro has been experimentally added. This macro adds a new type that stores an item for each variant of the enum. This is useful for storing a value for each variant of an enum. This is an experimental feature because I'm not convinced the current api surface area is correct.

    use strum::EnumTable;

... (truncated)

Commits

Updates sysinfo from 0.29.11 to 0.30.11

Changelog

Sourced from sysinfo's changelog.

0.30.11

  • macOS: Fix some invalid utf8 conversions.

0.30.10

  • Linux: Fix components not being listed anymore.

0.30.9

  • Linux/Windows: Performance improvements.
  • Linux/macOS/FreeBSD: Parent process ID is updated if changed as expected.

0.30.8

  • Linux: Fix missing parallelization.
  • Linux: Add cargo feature flag linux-tmpfs to list tmpfs mounts.
  • macOS: Fix CPU usage returning NaN.
  • Components::refresh is now parallelized.

0.30.7

  • Linux: Fix cgroup memory computation.
  • FreeBSD: Fix documentation about disk usage.

0.30.6

  • macOS: Fix missing update of process run time.
  • Add new Groups API.
  • Improve documentation.

0.30.5

  • Windows: Correctly retrieve processes name on 32 bits platforms.
  • Windows: Fix swap memory computation.

0.30.4

  • Windows: Fix misaligned read.

0.30.3

  • Improve dependency stack by updating the windows dependency.

0.30.2

  • Add ThreadKind enum.
  • Add Process::thread_kind method.

0.30.1

... (truncated)

Commits
  • 717126a Merge pull request #1258 from GuillaumeGomez/update
  • 3fecb41 Update crate version to 0.30.11
  • 8aee0a0 Update CHANGELOG for 0.30.11
  • 438eef0 Merge pull request #1257 from JustRustThings/1256-fix-macos-process-utf8-issues
  • 1bca13a fix: remove use of from_utf8_unchecked in macos process handling
  • e9c74b2 Merge pull request #1250 from GuillaumeGomez/update
  • b85cdb5 Update crate version to 0.30.10
  • d4226b0 Update CHANGELOG for 0.30
  • be83c6a Merge pull request #1249 from GuillaumeGomez/backport
  • 053a7b4 Add regression test for components
  • Additional commits viewable in compare view

Updates termwiz from 0.20.0 to 0.22.0

Release notes

Sourced from termwiz's releases.

Nightly Builds

Ignore the sources associated with this release: it's just the readme. This release holds builds generated by the nightly build process that runs in the CI/CD environment. These builds may be unstable or unusable; they are simply a build of whatever is in master at the time that the nightly build runs.

Commits

Updates tokio from 1.37.0 to 1.38.0

Release notes

Sourced from tokio's releases.

Tokio v1.38.0

This release marks the beginning of stabilization for runtime metrics. It stabilizes RuntimeMetrics::worker_count. Future releases will continue to stabilize more metrics.

Added

  • fs: add File::create_new (#6573)
  • io: add copy_bidirectional_with_sizes (#6500)
  • io: implement AsyncBufRead for Join (#6449)
  • net: add Apple visionOS support (#6465)
  • net: implement Clone for NamedPipeInfo (#6586)
  • net: support QNX OS (#6421)
  • sync: add Notify::notify_last (#6520)
  • sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
  • sync: add split method to the semaphore permit (#6472, #6478)
  • task: add tokio::task::join_set::Builder::spawn_blocking (#6578)
  • wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)

Changed

  • macros: make #[tokio::test] append #[test] at the end of the attribute list (#6497)
  • metrics: fix blocking_threads count (#6551)
  • metrics: stabilize RuntimeMetrics::worker_count (#6556)
  • runtime: move task out of the lifo_slot in block_in_place (#6596)
  • runtime: panic if global_queue_interval is zero (#6445)
  • sync: always drop message in destructor for oneshot receiver (#6558)
  • sync: instrument Semaphore for task dumps (#6499)
  • sync: use FIFO ordering when waking batches of wakers (#6521)
  • task: make LocalKey::get work with Clone types (#6433)
  • tests: update nix and mio-aio dev-dependencies (#6552)
  • time: clean up implementation (#6517)
  • time: lazily init timers on first poll (#6512)
  • time: remove the true_when field in TimerShared (#6563)
  • time: use sharding for timer implementation (#6534)

Fixed

  • taskdump: allow building taskdump docs on non-unix machines (#6564)
  • time: check for overflow in Interval::poll_tick (#6487)
  • sync: fix incorrect is_empty on mpsc block boundaries (#6603)

Documented

  • fs: rewrite file system docs (#6467)
  • io: fix stdin documentation (#6581)
  • io: fix obsolete reference in ReadHalf::unsplit() documentation (#6498)
  • macros: render more comprehensible documentation for select! (#6468)
  • net: add missing types to module docs (#6482)
  • net: fix misleading NamedPipeServer example (#6590)

... (truncated)

Commits

Updates tokio-util from 0.7.10 to 0.7.11

Commits
  • cdf9d99 chore: prepare tokio-util v0.7.11 (#6535)
  • f6eb1ee time: lazily init timers on first poll (#6512)
  • b7d4fba sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
  • 3c8d8e6 chore: fix latest rust-1.78.0 warnings (#6528)
  • e971a5e util: use FIFO ordering in WakeList (#6521)
  • 28439e2 time: clean up implementation (#6517)
  • d33fdd8 time: check for overflow in Interval::poll_tick (#6487)
  • 731dde2 runtime: clarify misleading use of UnsafeCell::with_mut (#6513)
  • 9ed5957 wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)
  • a73d6bf macros: #[cfg(not(test))] is no longer necessary for main macros (#6508)
  • Additional commits viewable in compare view

Updates toml from 0.8.12 to 0.8.13

Commits

Updates vmap from 0.5.1 to 0.6.3

Changelog

Sourced from vmap's changelog.

[0.6.3] - 2024-03-13

  • Update some Size functions to be const
  • Add or improve AsMut and AsRef implementations
  • Add Ring::clear() method
  • Add passthrough implementations for Read and Write when possible
  • Improve the BufWriter::into_inner()

[0.6.2] - 2024-03-08

  • Update dependencies

[0.6.1] - 2024-03-07

  • Add error conversion

[0.6.0] - 2024-03-06

Commits

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-dependencies group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.82` | `1.0.86` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.7` | `0.22.0` |
| [blocking](https://github.com/smol-rs/blocking) | `1.5.1` | `1.6.1` |
| [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.3` | `0.1.5` |
| [rmp-serde](https://github.com/3Hren/msgpack-rust) | `1.2.0` | `1.3.0` |
| [rmpv](https://github.com/3Hren/msgpack-rust) | `1.0.2` | `1.3.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.198` | `1.0.203` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.116` | `1.0.117` |
| [strum](https://github.com/Peternator7/strum) | `0.24.1` | `0.26.2` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.29.11` | `0.30.11` |
| [termwiz](https://github.com/wez/wezterm) | `0.20.0` | `0.22.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.37.0` | `1.38.0` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.10` | `0.7.11` |
| [toml](https://github.com/toml-rs/toml) | `0.8.12` | `0.8.13` |
| [vmap](https://github.com/kalamay/vmap-rs) | `0.5.1` | `0.6.3` |



Updates `anyhow` from 1.0.82 to 1.0.86
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.82...1.0.86)

Updates `base64` from 0.21.7 to 0.22.0
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.21.7...v0.22.0)

Updates `blocking` from 1.5.1 to 1.6.1
- [Release notes](https://github.com/smol-rs/blocking/releases)
- [Changelog](https://github.com/smol-rs/blocking/blob/master/CHANGELOG.md)
- [Commits](smol-rs/blocking@v1.5.1...v1.6.1)

Updates `hyper-util` from 0.1.3 to 0.1.5
- [Release notes](https://github.com/hyperium/hyper-util/releases)
- [Changelog](https://github.com/hyperium/hyper-util/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper-util@v0.1.3...v0.1.5)

Updates `rmp-serde` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/3Hren/msgpack-rust/releases)
- [Commits](3Hren/msgpack-rust@rmp-serde/v1.2.0...rmp-serde/v1.3.0)

Updates `rmpv` from 1.0.2 to 1.3.0
- [Release notes](https://github.com/3Hren/msgpack-rust/releases)
- [Commits](3Hren/msgpack-rust@rmpv/v1.0.2...rmpv/v1.3.0)

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

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

Updates `strum` from 0.24.1 to 0.26.2
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Peternator7/strum/commits/v0.26.2)

Updates `sysinfo` from 0.29.11 to 0.30.11
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.29.11...v0.30.11)

Updates `termwiz` from 0.20.0 to 0.22.0
- [Release notes](https://github.com/wez/wezterm/releases)
- [Changelog](https://github.com/wez/wezterm/blob/main/docs/changelog.md)
- [Commits](https://github.com/wez/wezterm/commits)

Updates `tokio` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.37.0...tokio-1.38.0)

Updates `tokio-util` from 0.7.10 to 0.7.11
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.10...tokio-util-0.7.11)

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

Updates `vmap` from 0.5.1 to 0.6.3
- [Changelog](https://github.com/kalamay/vmap-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/kalamay/vmap-rs/commits/v0.6.3)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: blocking
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: hyper-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: rmp-serde
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: rmpv
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: strum
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: sysinfo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: termwiz
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: vmap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner June 3, 2024 10:52
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jun 3, 2024
@hatchan hatchan requested review from a team and hatchan and removed request for a team June 3, 2024 10:55
@mellowagain mellowagain requested review from mellowagain and removed request for hatchan June 6, 2024 13:12
@mellowagain mellowagain enabled auto-merge (squash) June 6, 2024 13:27
@mellowagain mellowagain merged commit cf4df23 into main Jun 6, 2024
4 checks passed
@mellowagain mellowagain deleted the dependabot/cargo/cargo-dependencies-a3a55d4a15 branch June 6, 2024 13:31
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.

1 participant