deps: bump the rust-dependencies group across 1 directory with 7 updates
Type: Pull Request
State: Open
Association: Unknown
Comments: 2
(3 months ago)
(3 months ago)
dependencies rust
Bumps the rust-dependencies group with 7 updates in the / directory:
| Package | From | To |
|---|---|---|
| clap | 4.5.57 |
4.5.60 |
| tokio | 1.49.0 |
1.50.0 |
| toml | 0.9.11+spec-1.1.0 |
1.0.6+spec-1.1.0 |
| sqlparser | 0.60.0 |
0.61.0 |
| indicatif | 0.18.3 |
0.18.4 |
| tempfile | 3.24.0 |
3.26.0 |
| predicates | 3.1.3 |
3.1.4 |
Updates clap from 4.5.57 to 4.5.60
Release notes
Sourced from clap's releases.
v4.5.60
[4.5.60] - 2026-02-19
Fixes
- (help) Quote empty default values, possible values
v4.5.59
[4.5.59] - 2026-02-16
Fixes
Command::ignore_errorsno longer masks help/version on subcommandsv4.5.58
[4.5.58] - 2026-02-11
Changelog
Sourced from clap's changelog.
[4.5.60] - 2026-02-19
Fixes
- (help) Quote empty default values, possible values
[4.5.59] - 2026-02-16
Fixes
Command::ignore_errorsno longer masks help/version on subcommands[4.5.58] - 2026-02-11
Commits
33d24d8chore: Release9332409docs: Update changelogb7adce5Merge pull request #6166 from fabalchemy/fix-dynamic-powershell-completion009bba4fix(clap_complete): Improve powershell registrationd89d57dchore: Releasef18b67edocs: Update changelog9d218ebMerge pull request #6165 from epage/shirt126440cfix(help): Correctly calculate padding for short-only args9e3c05etest(help): Show panic with short, valueless argc9898d0test(help): Verify short with value- Additional commits viewable in compare view
Updates tokio from 1.49.0 to 1.50.0
Release notes
Sourced from tokio's releases.
Tokio v1.50.0
1.50.0 (Mar 3rd, 2026)
Added
Changed
- io: add optimizer hint that
memchrreturns in-bounds pointer (#7792)- io: implement vectored writes for
write_buf(#7871)- runtime: panic when
event_intervalis set to 0 (#7838)- runtime: shorten default thread name to fit in Linux limit (#7880)
- signal: remember the result of
SetConsoleCtrlHandler(#7833)- signal: specialize windows
Registry(#7885)Fixed
- io: always cleanup
AsyncFdregistration list on deregister (#7773)- macros: remove (most) local
usedeclarations intokio::select!(#7929)- net: fix
GET_BUF_SIZEconstant fortarget_os = "android"(#7889)- runtime: avoid redundant unpark in current_thread scheduler (#7834)
- runtime: don't park in
current_threadifbefore_parkdefers waker (#7835)- io: fix write readiness on ESP32 on short writes (#7872)
- runtime: wake deferred tasks before entering
block_in_place(#7879)- sync: drop rx waker when oneshot receiver is dropped (#7886)
- runtime: fix double increment of
num_idle_threadson shutdown (#7910, #7918, #7922)Unstable
- fs: check for io-uring opcode support (#7815)
- runtime: avoid lock acquisition after uring init (#7850)
Documented
- docs: update outdated unstable features section (#7839)
- io: clarify the behavior of
AsyncWriteExt::shutdown()(#7908)- io: explain how to flush stdout/stderr (#7904)
- io: fix incorrect and confusing
AsyncWritedocumentation (#7875)- rt: clarify the documentation of
Runtime::spawn(#7803)- rt: fix missing quotation in docs (#7925)
- runtime: correct the default thread name in docs (#7896)
- runtime: fix
event_intervaldoc (#7932)- sync: clarify RwLock fairness documentation (#7919)
- sync: clarify that
recvreturnsNoneonce closed and no more messages (#7920)- task: clarify when to use
spawn_blockingvs dedicated threads (#7923)- task: doc that task drops before
JoinHandlecompletion (#7825)- signal: guarantee that listeners never return
None(#7869)- task: fix task module feature flags in docs (#7891)
... (truncated)
Commits
0273e45chore: prepare Tokio v1.50.0 (#7934)e3ee4e5chore: prepare tokio-macros v2.6.1 (#7943)8c980eaio: addwrite_all_vectoredtotokio-util(#7768)e35fd6dci: fix patch during clippy step (#7935)03fe44cruntime: fixevent_intervaldoc (#7932)d18e5dfio: fix race inMock::poll_write(#7882)f21f269runtime: fix race condition during the blocking pool shutdown (#7922)d81e8f0macros: remove (most) localusedeclarations intokio::select!(#7929)25e7f26rt: fix missing quotation in docs (#7925)e1a91efutil: fix typo in docs (#7926)- Additional commits viewable in compare view
Updates toml from 0.9.11+spec-1.1.0 to 1.0.6+spec-1.1.0
Commits
a09707echore: Release7b0feaadocs: Update changelog2902954Revert "fix(toml): Track dotted key for spans" (#1119)a586caeRevert "fix(toml): Track dotted key for spans"d35c3f6chore: Release949b4e8docs: Update changelog47b878bfix(toml): Track dotted key for spans (#1118)87461d8fix(toml): Track dotted key for spans796370etest(serde): Check span meaningad87859test(serde): Track key spans- Additional commits viewable in compare view
Updates sqlparser from 0.60.0 to 0.61.0
Commits
272c25eFix changelog (#2206)09deb94Prepare to release sqlparser0.61.0and sqlparser_derive0.5.0(#2195)fcc7bceFix MAP literals parsing (#2205)60abfecAdd Tokenizer custom token mapper support (#2184)0924f3aPostgreSQL: Support PostgreSQL ANALYZE with optional table and column (#2187)23acd23Add support for C-style comments (#2034)e4c5500Fixed overflow error, recursion counter was not included for parenthesis (#2199)bc55b37Added missing derives to dialect marker structs (#2191)cb21477MySQL: Allow optional constraint name after CONSTRAINT keyword (#2183)d7f56e8[Oracle] Support hierarchical queries (#2185)- Additional commits viewable in compare view
Updates indicatif from 0.18.3 to 0.18.4
Release notes
Sourced from indicatif's releases.
0.18.4
What's Changed
- initial draft oft hold_max with heuristic by
@djugeiin console-rs/indicatif#657- Fix duration after finish by
@luolongin console-rs/indicatif#748- Add refresh rate warning for ProgressDrawTarget::term_like() by
@djcin console-rs/indicatif#750- Seeking heuristic tweaks by
@djcin console-rs/indicatif#751- Expose the current tab width by
@alexisfontainein console-rs/indicatif#754- Make WASM support optional via a feature flag by
@SvenFinnin console-rs/indicatif#761- fix: respect NO_COLOR and TERM=dumb environment variables by
@shaanmajidin console-rs/indicatif#764
Commits
4de2f60Bump version to 0.18.48e0ab0efix: respect NO_COLOR and TERM=dumb environment variables781b2d0Take semver-compatible dependency updates34aee07Introduce unicode-width feature51d284fIntroduce wasmbind featureee057e5Bump tokio from 1.48.0 to 1.49.031bcea3Bump portable-atomic from 1.11.1 to 1.12.0dbd26ebBump console from 0.16.1 to 0.16.27ac4a0dExpose the current tab width95088ffiter: clean up variable names, casting- Additional commits viewable in compare view
Updates tempfile from 3.24.0 to 3.26.0
Changelog
Sourced from tempfile's changelog.
3.26.0
- Support
NamedTempFile::persiston RedoxOS (#393) (thanks to@Andy-Python-Programmer).3.25.0
- Allow
getrandom0.4.x while retaining support forgetrandom0.3.x.
Commits
929a112chore: release 3.26.029d6ac5Add Redox OS CI (#394)375067fdoc(README): document supported platformsd353717feat(redox): implement persist() (#393)64114d7Fix typos in documentation (#392)9a38b8dchore: release 3.25.0fd4430bchore: allow getrandom 0.4.x (#391)8e5ba93ci: restrict permissions to the empty set by default (#389)4645b68ci: improve formatting and simplify freebsd CI (#388)3eb40e0ci: adds FreeBsd ci using vm runner (#387)- See full diff in compare view
Updates predicates from 3.1.3 to 3.1.4
Changelog
Sourced from predicates's changelog.
[3.1.4] - 2026-02-11
- Make
BoxPredicate::find_caseuse the innerfind_caseimplementation
Commits
f54f2cdchore: Releasece8099eMerge pull request #200 from rynoV/master34d11dedocs: Update changeloga03ae99feat: Make BoxPredicate::find_case use the inner find_case9b59897test: Add test for BoxPredicate::find_case45f4333Merge pull request #201 from assert-rs/renovate/crate-ci-typos-1.xb9c965bchore(deps): Update pre-commit hook crate-ci/typos to v1.42.30d9cf08Merge pull request #199 from epage/template9968b8achore: Update from _rust templatee4f2b35chore(ci): Update action- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Package Dependencies
toml
cargo
0.9.11+spec-1.1.0 → 1.0.6+spec-1.1.0
Major
Technical Details
| ID: | 14486883 |
| UUID: | 4043581021 |
| Node ID: | PR_kwDOQb49887I-CzB |
| Host: | GitHub |
| Repository: | RAprogramm/sql-query-analyzer |