Skip to content

Bump the dependencies group across 1 directory with 15 updates#148

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/dependencies-ba5479c139
Open

Bump the dependencies group across 1 directory with 15 updates#148
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/dependencies-ba5479c139

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 24, 2025

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

Package From To
strum 0.26.3 0.27.1
anyhow 1.0.95 1.0.98
zstd 0.13.2 0.13.3
tar 0.4.43 0.4.44
flate2 1.0.35 1.1.1
oci-spec 0.7.1 0.8.0
serde_json 1.0.137 1.0.140
chrono 0.4.39 0.4.40
serde 1.0.217 1.0.219
indicatif 0.17.9 0.17.11
tokio 1.43.0 1.44.2
tokio-util 0.7.13 0.7.15
clap 4.5.27 4.5.37
shadow-rs 0.38.0 1.1.1
globset 0.4.15 0.4.16

Updates strum from 0.26.3 to 0.27.1

Release notes

Sourced from strum's releases.

v0.27.1

What's Changed

New Contributors

Full Changelog: Peternator7/strum@v0.27.0...v0.27.1

v0.27.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from strum's changelog.

0.27.1

  • #414: Fix docrs build error.

  • #417: Mention parse_error_ty and parse_error_fn that had been left out of the docs accidentally.

  • #421#331: Implement #[strum(transparent)] attribute on IntoStaticStr, Display and AsRefStr that forwards the implmenentation to the inner value. Note that for static strings, the inner value must be convertible to an &'static str.

    #[derive(strum::Display)]
    enum SurveyResponse {
      Yes,
      No,
      #[strum(transparent)]
      Other(String)
    }
    fn main() {
    let response = SurveyResponse::Other("It was good".into());
    println!("Question: Did you have fun?");
    println!("Answer: {}", response);
    // prints: Answer: It was good
    }

0.27.0

Highlights

  • #407: Display is now correctly derived in [no_std] projects.
  • #402: EnumIter now implements Send + Sync
  • #400: EnumTryAs now handles attributes on variant fields correctly.
  • #398: strum is now on rust 2021
  • #391: EnumProperties correctly implements get_bool and get_int finally. 🎉
  • #380: FromString now supports 2 additional attributes, parse_error_ty and parse_error_fn that can be added to use a custom error type rather than the default strum error message.
    • #410: These attributes accept a Path rather than a String to improve behavior with rust-analyzer.

Breaking Changes

  • #384: MSRV is now 1.66.1
  • #391: EnumProperties doesn't provide default implementations anymore. This would have required you to manually implement this trait which should be very uncommon.

0.26.4 (strum_macros)

  • #360: Fixes bug introduced with new string interpolation feature where

... (truncated)

Commits

Updates anyhow from 1.0.95 to 1.0.98

Release notes

Sourced from anyhow's releases.

1.0.98

1.0.97

  • Documentation improvements

1.0.96

  • Documentation improvements
Commits
  • 709fe86 Release 1.0.98
  • cbc1ad2 Merge pull request #415 from dtolnay/intodyn
  • e1a2017 Add 2 different conversions to Box<dyn Error + Send + Sync + 'static>
  • 29f2edd Merge pull request #416 from dtolnay/oldnostd
  • 2244db8 Omit unused object_boxed from vtable in old no-std rustc
  • 213a9c2 Merge pull request #414 from dtolnay/nightly
  • 02aa6b6 Make all nightly go through the module that was probed
  • bfb89ef Release 1.0.97
  • c7fca9b Ignore elidable_lifetime_names pedantic clippy lint
  • 427c0bb Point standard library links to stable
  • Additional commits viewable in compare view

Updates zstd from 0.13.2 to 0.13.3

Commits

Updates tar from 0.4.43 to 0.4.44

Commits

Updates flate2 from 1.0.35 to 1.1.1

Release notes

Sourced from flate2's releases.

1.1.1

This release should be smaller and thus faster to download. Additionally, when using the zlib-rs backend, duplicate symbol issues shouldn't occur anymore.

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.1.0...1.1.1

1.1.0

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.35...1.1.0

Commits
  • 98c98c8 Merge pull request #482 from folkertdev/update-zlib-rs-0.5.0
  • 94b36b0 upgrade zlib-rs to version 0.5.0
  • a79bfe4 Merge pull request #481 from Shnatsel/backend-docs
  • 694e822 less editorializing
  • 6debe95 Merge pull request #480 from Shnatsel/zlib-rs-readme
  • a24e276 Rewrite outdated backend notes in lib.rs
  • 78ca174 More informative README on backends
  • c9a3efa Merge pull request #476 from jayvdb/rm-changelog
  • 0b2137d Remove stale CHANGELOG.md
  • 0abbd1c Merge pull request #475 from oyvindln/patch-1
  • Additional commits viewable in compare view

Updates oci-spec from 0.7.1 to 0.8.0

Release notes

Sourced from oci-spec's releases.

v0.8.0

What's Changed

Breaking Changes

Other Changes

New Contributors

Full Changelog: youki-dev/oci-spec-rs@v0.7.1...v0.8.0

Commits
  • c87ce82 Bump to 0.8.0
  • 986cd08 Merge pull request #273 from nayuta-ai/add-linux-network-devices
  • 7bffdae fix(runtime): rename exec_cpu_affinity field to execCPUAffinity to match runt...
  • 19851a3 Add netDevices field
  • df4842f fix(linux): add setters for LinuxMemory
  • a315e42 Merge pull request #270 from navidys/codespell
  • 8cab6c7 running codespell
  • e97f892 Merge pull request #268 from youki-dev/dependabot/cargo/rstest-0.25.0
  • e8469b4 Update rstest requirement from 0.24.0 to 0.25.0
  • e9b9540 Merge pull request #267 from youki-dev/dependabot/cargo/strum-0.27.0
  • Additional commits viewable in compare view

Updates serde_json from 1.0.137 to 1.0.140

Release notes

Sourced from serde_json's releases.

v1.0.140

  • Documentation improvements

v1.0.139

  • Documentation improvements

v1.0.138

  • Documentation improvements
Commits
  • 7627834 Release 1.0.140
  • d77a498 Merge pull request #1245 from serde-rs/powerpc
  • b34d317 Delete unused gcc installation
  • f7200c3 Ignore unbuffered_bytes clippy lint
  • 76cd4fb Ignore elidable_lifetime_names pedantic clippy lint
  • 400eaa9 Point standard library links to stable
  • 4d4f53c Release 1.0.139
  • 5d6b32f Merge pull request #1242 from dtolnay/writefloat
  • e5bb8bd Document behavior of write_f32/f64 on non-finite floats
  • 7a79781 Merge pull request #1241 from dtolnay/doclink
  • Additional commits viewable in compare view

Updates chrono from 0.4.39 to 0.4.40

Release notes

Sourced from chrono's releases.

0.4.40

What's Changed

Commits
  • 2b7a28e Bump version to 0.4.40
  • 6d29c8a Add quarter (%q) date string specifier
  • 07216ae Upgrade to windows-bindgen 0.60
  • bf1973c Use similar-asserts to show bindgen diff
  • d0f8b59 Restrict MSRV to check --lib
  • 1f345fd Switch to 2024 idiom
  • 7f6cf5e Switch to 2024 style
  • 11d227a Apply suggestions from clippy 1.85
  • 15e287b Use NaiveDateTime for internal tz_info methods. (#1658)
  • 8317e7c docs: fix minor typo
  • Additional commits viewable in compare view

Updates serde from 1.0.217 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)

v1.0.218

  • Documentation improvements
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • 7bfd518 Release 1.0.218
  • Additional commits viewable in compare view

Updates indicatif from 0.17.9 to 0.17.11

Release notes

Sourced from indicatif's releases.

0.17.11

What's Changed

0.17.10

What's Changed

With some great performance improvements from @​jaheba.

Commits
  • fe59003 Bump the version to 0.17.11
  • 9d4849a Change OnceCell to OnceLock in TabExpandedString
  • c340e9f Bump version to 0.17.10
  • 3c9017e Update rand requirement from 0.8 to 0.9 (#693)
  • 2871b47 Add dec and dec_length to ProgressBar
  • be119bd Remove unnecessary spinner display in multi examples (#682)
  • 1a5f606 Make ProgressBar:set_tab_with take &self
  • fff1218 Make tab extension lazy
  • 33a7843 Only get draw_target-width when we actually draw
  • 6417492 Fix double prints (#671)
  • Additional commits viewable in compare view

Updates tokio from 1.43.0 to 1.44.2

Release notes

Sourced from tokio's releases.

Tokio v1.44.2

This release fixes a soundness issue in the broadcast channel. The channel accepts values that are Send but !Sync. Previously, the channel called clone() on these values without synchronizing. This release fixes the channel by synchronizing calls to .clone() (Thanks Austin Bonander for finding and reporting the issue).

Fixed

  • sync: synchronize clone() call in broadcast channel (#7232)

#7232: tokio-rs/tokio#7232

Tokio v1.44.1

1.44.1 (March 13th, 2025)

Fixed

  • rt: skip defer queue in block_in_place context (#7216)

#7216: tokio-rs/tokio#7216

Tokio v1.44.0

1.44.0 (March 7th, 2025)

This release changes the from_std method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #7172.

Added

  • coop: add task::coop module (#7116)
  • process: add Command::get_kill_on_drop() (#7086)
  • sync: add broadcast::Sender::closed (#6685, #7090)
  • sync: add broadcast::WeakSender (#7100)
  • sync: add oneshot::Receiver::is_empty() (#7153)
  • sync: add oneshot::Receiver::is_terminated() (#7152)

Fixed

  • fs: empty reads on File should not start a background read (#7139)
  • process: calling start_kill on exited child should not fail (#7160)
  • signal: fix CTRL_CLOSE, CTRL_LOGOFF, CTRL_SHUTDOWN on windows (#7122)
  • sync: properly handle panic during mpsc drop (#7094)

Changes

  • runtime: clean up magic number in registration set (#7112)
  • coop: make coop yield using waker defer strategy (#7185)
  • macros: make select! budget-aware (#7164)
  • net: panic when passing a blocking socket to from_std (#7166)
  • io: clean up buffer casts (#7142)

... (truncated)

Commits
  • ec4b1d7 chore: forward port 1.43.x
  • e3c3a56 Merge branch 'tokio-1.43.x' into forward-port-1.43.x
  • a7b658c chore: prepare Tokio v1.43.1 release
  • c1c8d10 Merge remote-tracking branch 'origin/tokio-1.38.x' into forward-port-1.38.x
  • aa303bc chore: prepare Tokio v1.38.2 release
  • 7b6ccb5 chore: backport CI fixes
  • 4b174ce sync: fix cloning value when receiving from broadcast channel
  • d413c9c chore: prepare Tokio v1.44.1 (#7217)
  • addbfb9 rt: skip defer queue in block_in_place context (#7216)
  • 8182ecf chore: prepare Tokio v1.44.0 (#7202)
  • Additional commits viewable in compare view

Updates tokio-util from 0.7.13 to 0.7.15

Commits

Updates clap from 4.5.27 to 4.5.37

Release notes

Sourced from clap's releases.

v4.5.37

[4.5.37] - 2025-04-18

Features

  • Added ArgMatches::try_clear_id()

v4.5.36

[4.5.36] - 2025-04-11

Fixes

  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now

v4.5.35

[4.5.35] - 2025-04-01

Fixes

  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none

v4.5.34

[4.5.34] - 2025-03-27

Fixes

  • (help) Don't add extra blank lines with flatten_help(true) and subcommands without arguments

v4.5.33

[4.5.33] - 2025-03-26

Fixes

  • (error) When showing the usage of a suggestion for an unknown argument, don't show the group

v4.5.32

[4.5.32] - 2025-03-10

Features

  • Add Error::remove

Documentation

  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional

Internal

... (truncated)

Changelog

Sourced from clap's changelog.

[4.5.37] - 2025-04-18

Features

  • Added ArgMatches::try_clear_id()

[4.5.36] - 2025-04-11

Fixes

  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now

[4.5.35] - 2025-04-01

Fixes

  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none

[4.5.34] - 2025-03-27

Fixes

  • (help) Don't add extra blank lines with flatten_help(true) and subcommands without arguments

[4.5.33] - 2025-03-26

Fixes

  • (error) When showing the usage of a suggestion for an unknown argument, don't show the group

[4.5.32] - 2025-03-10

Features

  • Add Error::remove
...

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [strum](https://github.com/Peternator7/strum) | `0.26.3` | `0.27.1` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.95` | `1.0.98` |
| [zstd](https://github.com/gyscos/zstd-rs) | `0.13.2` | `0.13.3` |
| [tar](https://github.com/alexcrichton/tar-rs) | `0.4.43` | `0.4.44` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.35` | `1.1.1` |
| [oci-spec](https://github.com/youki-dev/oci-spec-rs) | `0.7.1` | `0.8.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.137` | `1.0.140` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.39` | `0.4.40` |
| [serde](https://github.com/serde-rs/serde) | `1.0.217` | `1.0.219` |
| [indicatif](https://github.com/console-rs/indicatif) | `0.17.9` | `0.17.11` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.43.0` | `1.44.2` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.13` | `0.7.15` |
| [clap](https://github.com/clap-rs/clap) | `4.5.27` | `4.5.37` |
| [shadow-rs](https://github.com/baoyachi/shadow-rs) | `0.38.0` | `1.1.1` |
| [globset](https://github.com/BurntSushi/ripgrep) | `0.4.15` | `0.4.16` |



Updates `strum` from 0.26.3 to 0.27.1
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.26.3...v0.27.1)

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

Updates `zstd` from 0.13.2 to 0.13.3
- [Release notes](https://github.com/gyscos/zstd-rs/releases)
- [Commits](gyscos/zstd-rs@v0.13.2...v0.13.3)

Updates `tar` from 0.4.43 to 0.4.44
- [Commits](alexcrichton/tar-rs@0.4.43...0.4.44)

Updates `flate2` from 1.0.35 to 1.1.1
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](rust-lang/flate2-rs@1.0.35...1.1.1)

Updates `oci-spec` from 0.7.1 to 0.8.0
- [Release notes](https://github.com/youki-dev/oci-spec-rs/releases)
- [Changelog](https://github.com/youki-dev/oci-spec-rs/blob/main/release.md)
- [Commits](youki-dev/oci-spec-rs@v0.7.1...v0.8.0)

Updates `serde_json` from 1.0.137 to 1.0.140
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.137...v1.0.140)

Updates `chrono` from 0.4.39 to 0.4.40
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.39...v0.4.40)

Updates `serde` from 1.0.217 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.217...v1.0.219)

Updates `indicatif` from 0.17.9 to 0.17.11
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](console-rs/indicatif@0.17.9...0.17.11)

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

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

Updates `clap` from 4.5.27 to 4.5.37
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.27...clap_complete-v4.5.37)

Updates `shadow-rs` from 0.38.0 to 1.1.1
- [Release notes](https://github.com/baoyachi/shadow-rs/releases)
- [Commits](baoyachi/shadow-rs@v0.38.0...v1.1.1)

Updates `globset` from 0.4.15 to 0.4.16
- [Release notes](https://github.com/BurntSushi/ripgrep/releases)
- [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/ripgrep@ignore-0.4.15...globset-0.4.16)

---
updated-dependencies:
- dependency-name: strum
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: anyhow
  dependency-version: 1.0.98
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: zstd
  dependency-version: 0.13.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tar
  dependency-version: 0.4.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: flate2
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: oci-spec
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: serde_json
  dependency-version: 1.0.140
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: chrono
  dependency-version: 0.4.40
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: indicatif
  dependency-version: 0.17.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tokio
  dependency-version: 1.44.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tokio-util
  dependency-version: 0.7.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: clap
  dependency-version: 4.5.37
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: shadow-rs
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: globset
  dependency-version: 0.4.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

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 Apr 24, 2025
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