Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 4, 2025

Bumps the rust group with 8 updates in the / directory:

Package From To
clap 4.5.41 4.5.42
env_logger 0.10.2 0.11.8
inquire 0.6.2 0.7.5
nix 0.29.0 0.30.1
rand 0.8.5 0.9.2
serde_json 1.0.141 1.0.142
toml 0.8.23 0.9.4
xdg 2.5.2 3.0.0

Updates clap from 4.5.41 to 4.5.42

Release notes

Sourced from clap's releases.

v4.5.42

[4.5.42] - 2025-07-30

Fixes

  • Include subcommand visible long aliases in --help
Changelog

Sourced from clap's changelog.

[4.5.42] - 2025-07-30

Fixes

  • Include subcommand visible long aliases in --help
Commits
  • 27cc4b7 chore: Release
  • 16a4fc7 docs: Update changelog
  • 07f9f15 Merge pull request #5874 from tetzng/fix-fish-completions
  • 721deab chore: Release
  • a4be55b docs: Update changelog
  • fd5e691 Merge pull request #5877 from therealprof/features/use-btreemap-instead-of-so...
  • 6604e79 Use BTreeMap instead of a sorted Vec
  • 28e163a fix(complete): Remove {} and replace commas with newlines
  • b5a47c4 chore: Release
  • b154a7a docs: Update changelog
  • Additional commits viewable in compare view

Updates env_logger from 0.10.2 to 0.11.8

Release notes

Sourced from env_logger's releases.

v0.11.8

[0.11.8] - 2025-04-01

Compatibility

  • (kv) Deprecate the unstable-kv feature which may be removed in a future patch release

Features

  • (kv) Stabilize key-value support behind the kv feature
  • Expose ConfigurableFormat to build custom [Builder::format]s that leverage this

v0.11.7

[0.11.7] - 2025-03-10

Internal

  • Replaced humantime with jiff

v0.11.6

[0.11.6] - 2024-12-20

Features

  • Opt-in file and line rendering

v0.11.5

[0.11.5] - 2024-07-25

v0.11.4

[0.11.4] - 2024-07-23

v0.11.3

[0.11.3] - 2024-03-05

Features

  • Experimental support for key-value logging behind unstable-kv

v0.11.2

[0.11.2] - 2024-02-13

v0.11.1

What's Changed

New Contributors

Full Changelog: rust-cli/env_logger@v0.11.0...v0.11.1

... (truncated)

Changelog

Sourced from env_logger's changelog.

[0.11.8] - 2025-04-01

Compatibility

  • (kv) Deprecate the unstable-kv feature which may be removed in a future patch release

Features

  • (kv) Stabilize key-value support behind the kv feature
  • Expose ConfigurableFormat to build custom [Builder::format]s that leverage this

[0.11.7] - 2025-03-10

Internal

  • Replaced humantime with jiff

[0.11.6] - 2024-12-20

Features

  • Opt-in file and line rendering

[0.11.5] - 2024-07-25

[0.11.4] - 2024-07-23

[0.11.3] - 2024-03-05

Features

  • Experimental support for key-value logging behind unstable-kv

[0.11.2] - 2024-02-13

[0.11.1] - 2024-01-27

Fixes

  • Allow styling with Target::Pipe

[0.11.0] - 2024-01-19

Migration Guide

env_logger::fmt::Style: The bespoke styling API, behind color, was removed, in favor of accepting any ANSI styled string and adapting it to the target stream's capabilities.

Possible styling libraries include:

... (truncated)

Commits
  • f0443b2 chore: Release
  • d8b5e1e docs: Update changelog
  • 3ca671f Merge pull request #360 from epage/format
  • bc02d61 feat(fmt): Expose ConfigurableFormat
  • c567fde refactor(fmt): Pull out format logic
  • ce25c73 refactor(fmt): Make DefaultFormats name more specific
  • 739ebb1 refactor(fmt): Pull out logger's builder methods
  • 3acb571 refactor(fmt): Delegate formatting to DefaultFormat
  • e351bcb refactor(fmt): Reduce duplication in DefaultFormatWriter
  • 3c9e6ff Merge pull request #359 from epage/kv
  • Additional commits viewable in compare view

Updates inquire from 0.6.2 to 0.7.5

Release notes

Sourced from inquire's releases.

v0.7.5

  • Fix user-provided ANSI escape codes from being removed when rendering.
    • Introduced on 0.7.0, this regression was making it impossible to have colorised text inside the prompt.
    • Now ANSI escape codes are properly emitted when rendering the prompt in the terminal.
    • Thanks @​leoetlino!

v0.7.4

  • Fix unexpected behaviors of keep_filter option in MultiSelect prompts:
    • Filter input is now correcly getting reset only when keep_filter == false.
    • When the filter input is reset, the list of options is now correctly reset as well. Thanks @​Swivelgames for reporting #238.

v0.7.3

  • Fix cursor occasionally blinking in unexpected places.

v0.7.2

  • Pressing Ctrl+D now cancels the prompt. Thanks @​mikecvet for the PR!
  • Add support for h and l bindings when vim_mode is enabled on MultiSelect prompts, clearing or selecting all options respectively. Thanks @​afh for the PR!
  • Fix render issue #233 where cursor positioning at the end of a prompt was incorrect. Thanks @​msrd0 and @​Sydonian for reporting!

v0.7.1

v0.7.0

Breaking Changes

  • The Select and Multiselect Filter now scores input and is now expected to return an Option<i64>, making it possible to order/rank the list of options. #176 None: Will not be displayed in the list of options. Some(score): score determines the order of options, higher score, higher on the list of options.
  • Improved user experience on Password prompts. When there is a validation error, the input is cleared if the password is rendered using the Hidden display mode, matching the user expectation of having to write the password from scratch again. Thanks to @​CM-IV for the questions on #149!
  • Allow lifetime customization of RenderConfig. #101. Thanks to @​arturfast for the suggestion #95.
  • Implement fuzzy search as default on Select and MultiSelect prompts. Thanks @​Baarsgaard! #176
  • Revamped keybindings for DateSelect.

Features

  • Add one-liner helpers for quick scripts. #144.
  • Add new option on MultiSelect prompts to set all options to be selected by default. Thanks to @​conikeec for the suggestion (#151)!
  • Add new option on Select/MultiSelect prompts allowing to reset selection to the first item on filter-input changes. #176
  • Emacs-like keybindings added where applicable (@​jasonish, @​EnigmaCurry):
    • Ctrl-p/Ctrl-n for up/down
    • Ctrl-b/Ctrl-f for left/right
    • Ctrl-j/Ctrl-g for enter/cancel
  • Vim keybindings are always supported in DateSelect prompts.
  • Added 'with_starting_filter_input' to both Select and MultiSelect, which allows for setting an initial value to the filter section of the prompt.

... (truncated)

Changelog

Sourced from inquire's changelog.

[0.7.5] - 2024-04-23

  • Fix user-provided ANSI escape codes from being removed when rendering.
    • Introduced on 0.7.0, this regression was making it impossible to have colorised text inside the prompt.
    • Now ANSI escape codes are properly emitted when rendering the prompt in the terminal.

[0.7.4] - 2024-03-25

  • Fix unexpected behaviors of keep_filter option in MultiSelect prompts:
    • Filter input is now correcly getting reset only when keep_filter == false.
    • When the filter input is reset, the list of options is now correctly reset as well. Thanks @​Swivelgames for reporting #238.

[0.7.3] - 2024-03-21

  • Fix cursor occasionally blinking in unexpected places.

[0.7.2] - 2024-03-17

  • Pressing Ctrl+D now cancels the prompt. Thanks @​mikecvet for the PR!
  • Add support for h and l bindings when vim_mode is enabled on MultiSelect prompts, clearing or selecting all options respectively. Thanks @​afh for the PR!
  • Fix render issue #233 where cursor positioning at the end of a prompt was incorrect. Thanks @​msrd0 and @​Sydonian for reporting!

[0.7.1] - 2024-03-10

  • Fix render issue #228 when using console crate as the terminal backend. Thanks @​maospr for reporting.

[0.7.0] - 2024-02-24

Breaking Changes

  • The Select and Multiselect Filter now scores input and is now expected to return an Option<i64>, making it possible to order/rank the list of options. #176 None: Will not be displayed in the list of options. Some(score): score determines the order of options, higher score, higher on the list of options.
  • Improved user experience on Password prompts. When there is a validation error, the input is cleared if the password is rendered using the Hidden display mode, matching the user expectation of having to write the password from scratch again. Thanks to @​CM-IV for the questions on #149!
  • Allow lifetime customization of RenderConfig. #101. Thanks to @​arturfast for the suggestion #95.
  • Implement fuzzy search as default on Select and MultiSelect prompts. #176
  • Revamped keybindings for DateSelect.

Features

  • Add one-liner helpers for quick scripts. #144.
  • Add new option on MultiSelect prompts to set all options to be selected by default. Thanks to @​conikeec for the suggestion (#151)!
  • Add new option on Select/MultiSelect prompts allowing to reset selection to the first item on filter-input changes. #176
  • Emacs-like keybindings added where applicable:
    • Ctrl-p/Ctrl-n for up/down
    • Ctrl-b/Ctrl-f for left/right
    • Ctrl-j/Ctrl-g for enter/cancel
  • Vim keybindings are always supported in DateSelect prompts.
  • Added 'with_starting_filter_input' to both Select and MultiSelect, which allows for setting an initial value to the filter section of the prompt.
  • Added starting_input for CustomType. #194

... (truncated)

Commits
  • 0e39b45 chore: release v0.7.5
  • e3db8d1 Add changelog entry
  • bf40860 Fix ANSI escape codes provided in input from being stripped when rendering
  • 7fe8e5e Improve changelog messaging of v0.7.4
  • 4ac91f3 chore: release v0.7.4
  • 2b1c882 Reset list of options when filter input is reset (#240)
  • 62ecc2e Fix unexpected behaviour of keep_filter option in MultiSelect prompts (#239)
  • 82ab0e4 chore: release v0.7.3
  • 8225428 Fix cursor occasionally blinking in unexpected places
  • 724c7e6 chore: release v0.7.2
  • Additional commits viewable in compare view

Updates nix from 0.29.0 to 0.30.1

Changelog

Sourced from nix's changelog.

[0.30.1] - 2025-05-04

Fixed

[0.30.0] - 2025-04-29

Added

  • Add socket option IPV6_PKTINFO for BSDs/Linux/Android, also IPV6_RECVPKTINFO for DragonFlyBSD (#2113)
  • Add fcntl's F_PREALLOCATE constant for Apple targets. (#2393)
  • Improve support for extracting the TTL / Hop Limit from incoming packets and support for DSCP (ToS / Traffic Class). (#2425)
  • Add socket option IP_TOS (nix::sys::socket::sockopt::IpTos) IPV6_TCLASS (nix::sys::socket::sockopt::Ipv6TClass) on Android/FreeBSD (#2464)
  • Add SeekData and SeekHole to Whence for hurd and apple targets (#2473)
  • Add From trait implementation between SocketAddr and Sockaddr, Sockaddr6 (#2474)
  • Added wrappers for posix_spawn API (#2475)
  • Add the support for Emscripten. (#2477)
  • Add fcntl constant F_RDADVISE for Apple target (#2480)
  • Add fcntl constant F_RDAHEAD for Apple target (#2482)
  • Add F_LOG2PHYS and F_LOG2PHYS_EXT for Apple target (#2483)
  • MAP_SHARED_VALIDATE was added for all linux targets. & MAP_SYNC was added for linux with the exclusion of mips architecures, and uclibc (#2499)
  • Add getregs()/getregset()/setregset() for Linux/musl/aarch64 (#2502)
  • Add FcntlArgs F_TRANSFEREXTENTS constant for Apple targets (#2504)
  • Add MapFlags::MAP_STACK in sys::man for netbsd (#2526)
  • Add support for libc::LOCAL_PEERTOKEN in getsockopt. (#2529)
  • Add support for syslog, openlog, closelog on all unix.

... (truncated)

Commits

Updates rand from 0.8.5 to 0.9.2

Changelog

Sourced from rand's changelog.

[0.9.2 — 2025-07-20]

Deprecated

  • Deprecate rand::rngs::mock module and StepRng generator (#1634)

Additions

  • Enable WeightedIndex<usize> (de)serialization (#1646)

[0.9.1] - 2025-04-17

Security and unsafe

  • Revise "not a crypto library" policy again (#1565)
  • Remove zerocopy dependency from rand (#1579)

Fixes

  • Fix feature simd_support for recent nightly rust (#1586)

Changes

  • Allow fn rand::seq::index::sample_weighted and fn IndexedRandom::choose_multiple_weighted to return fewer than amount results (#1623), reverting an undocumented change (#1382) to the previous release.

Additions

  • Add rand::distr::Alphabetic distribution. (#1587)
  • Re-export rand_core (#1604)

[0.9.0] - 2025-01-27

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)

... (truncated)

Commits

Updates serde_json from 1.0.141 to 1.0.142

Release notes

Sourced from serde_json's releases.

v1.0.142

Commits

Updates toml from 0.8.23 to 0.9.4

Commits

Updates xdg from 2.5.2 to 3.0.0

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

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.41` | `4.5.42` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.10.2` | `0.11.8` |
| [inquire](https://github.com/mikaelmello/inquire) | `0.6.2` | `0.7.5` |
| [nix](https://github.com/nix-rust/nix) | `0.29.0` | `0.30.1` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.2` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.141` | `1.0.142` |
| [toml](https://github.com/toml-rs/toml) | `0.8.23` | `0.9.4` |
| [xdg](https://github.com/whitequark/rust-xdg) | `2.5.2` | `3.0.0` |



Updates `clap` from 4.5.41 to 4.5.42
- [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.41...clap_complete-v4.5.42)

Updates `env_logger` from 0.10.2 to 0.11.8
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.10.2...v0.11.8)

Updates `inquire` from 0.6.2 to 0.7.5
- [Release notes](https://github.com/mikaelmello/inquire/releases)
- [Changelog](https://github.com/mikaelmello/inquire/blob/main/CHANGELOG.md)
- [Commits](mikaelmello/inquire@v0.6.2...v0.7.5)

Updates `nix` from 0.29.0 to 0.30.1
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](nix-rust/nix@v0.29.0...v0.30.1)

Updates `rand` from 0.8.5 to 0.9.2
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...rand_core-0.9.2)

Updates `serde_json` from 1.0.141 to 1.0.142
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.141...v1.0.142)

Updates `toml` from 0.8.23 to 0.9.4
- [Commits](toml-rs/toml@toml-v0.8.23...toml-v0.9.4)

Updates `xdg` from 2.5.2 to 3.0.0
- [Commits](https://github.com/whitequark/rust-xdg/commits)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.5.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: env_logger
  dependency-version: 0.11.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: inquire
  dependency-version: 0.7.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: nix
  dependency-version: 0.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: rand
  dependency-version: 0.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: serde_json
  dependency-version: 1.0.142
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: toml
  dependency-version: 0.9.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: xdg
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Aug 4, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 11, 2025

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

@dependabot dependabot bot closed this Aug 11, 2025
@dependabot dependabot bot deleted the dependabot/cargo/rust-a385bd90ff branch August 11, 2025 06:33
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