Skip to content

deps(cargo): bump the rust group across 1 directory with 23 updates - #374

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/rust-a4eb0559ba
Open

deps(cargo): bump the rust group across 1 directory with 23 updates#374
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/rust-a4eb0559ba

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 6, 2026

Copy link
Copy Markdown
Contributor

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

Package From To
actix-web 4.12.1 4.13.0
actix-files 0.6.9 0.6.10
twitch-irc 5.0.1 6.0.0
twitch_api 2f740ef f8b2e74
tokio 1.49.0 1.51.0
futures-util 0.3.31 0.3.32
futures 0.3.31 0.3.32
serde_qs 0.15.0 1.1.1
deadpool-redis 0.22.1 0.23.0
reqwest 0.12.28 0.13.2
jsonwebtoken 10.2.0 10.3.0
chrono 0.4.43 0.4.44
time 0.3.46 0.3.47
anyhow 1.0.100 1.0.102
rand 0.9.2 0.10.0
regex 1.12.2 1.12.3
once_cell 1.21.3 1.21.4
pin-project 1.1.10 1.1.11
env_logger 0.11.8 0.11.10
sha2 0.10.9 0.11.0
hmac 0.12.1 0.13.0
tokio-postgres 0.7.16 0.7.17
toml 0.9.11+spec-1.1.0 1.1.2+spec-1.1.0

Updates actix-web from 4.12.1 to 4.13.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.13.0

  • Minimum supported Rust version (MSRV) is now 1.88.
  • Improve HTTP/2 upload throughput by increasing default flow control window sizes. #3638
  • Add HttpServer::{h2_initial_window_size, h2_initial_connection_window_size} methods for tuning. #3638
  • Add HttpRequest::url_for_map and HttpRequest::url_for_iter methods for named URL parameters. #3895
  • Ignore unparsable cookies in Cookie request header.
  • Add experimental-introspection feature to report configured routes #3594
  • Add config/method for TCP_NODELAY. #3918
  • Fix panic when NormalizePath rewrites a scoped dynamic path before extraction (e.g., scope("{tail:.*}") + Path<String>). #3562
  • Do not compress 206 Partial Content responses. #3191

#3895: actix/actix-web#3895 #3594: actix/actix-web#3594 #3918: actix/actix-web#3918 #3638: actix/actix-web#3638 #3562: actix/actix-web#3562 #3191: actix/actix-web#3191

Commits

Updates actix-files from 0.6.9 to 0.6.10

Release notes

Sourced from actix-files's releases.

actix-files: v0.6.10

0.6.10

Security Notice

We addressed 2 vulnerabilities in this release:

We encourage updating your actix-files version as soon as possible.

Other changes

  • Minimum supported Rust version (MSRV) is now 1.88.
  • PathBufWrap & UriSegmentError made public. #3694

#3694: actix/actix-web#3694

Changelog

Sourced from actix-files's changelog.

[0.6.10] - 2018-05-24

Added

  • Allow to use path without traling slashes for scope registration #241

  • Allow to set encoding for exact NamedFile #239

Fixed

  • TestServer::post() actually sends GET request #240
Commits

Updates twitch-irc from 5.0.1 to 6.0.0

Release notes

Sourced from twitch-irc's releases.

v6.0.0

  • Breaking: Fixed a erroneous implementation of the IRCv3 tags: This crate now no longer differentiates between empty and missing IRCv3 tag values (e.g. @key is equivalent to @key=). The type of the IRCTags struct has changed to hold a HashMap<String, String> instead of a HashMap<String, Option<String>>.

    Where as re-stringifying messages with the above distinction was flawless before, this information is now intentionally discarded during parsing. This means @key= becomes @key if the message is parsed and re-stringified (This is the recommended way, according to the standard).

    See also: #186 and #196

  • Breaking: Removed ban(), unban(), timeout() and untimeout() since they are no longer supported by Twitch. They were previously deprecated in v4.1.0 (#197)

  • Breaking: Fixed typo in RoomStateMessage's follower mode (was follwers_only, is now followers_only). (#200)

  • Breaking: SubMysteryGift::sender_total_gifts is now an Option because the tag is missing when Twitch gift subs during SUBtember (#215)

  • Breaking: In twitch_irc::transport::websocket::WSTransport, the error types have been changed from tungstenite::error::Error to Box<tungstenite::error::Error> to reduce the size of the error variant in the data pipeline. (#221)

  • Breaking: Update to async-tungstenite v0.34, reqwest v0.13, tokio-rustls v0.26, webpki-roots v1. (#222)

    • With this, the feature flags refreshing-token-rustls-native-roots, transport-tcp-rustls-native-roots and transport-ws-rustls-native-roots now use rustls-platform-verifier instead of rustls-native-certs now (see the docs for further reading).
  • Breaking: Update to prometheus 0.14 (Careful, if you have multiple versions of prometheus in your crate, some of your metrics will go missing, because the default global registry lives inside the library.)

  • Minor: Added support for reply-parent tags (#189)

  • Minor: Tokens in CredentialsPair and UserAccessToken are now redacted in their Debug output. Same applies to the client_secret in RefreshingLoginCredentials. (#199)

  • Minor: Added example demonstrating usage of metrics-collection feature as well as an exemplary grafana dashboard template. (#203, #208)

  • Dev: Updated Rust edition to 2024. (#219)

Changelog

Sourced from twitch-irc's changelog.

v6.0.0

  • Breaking: Fixed a erroneous implementation of the IRCv3 tags: This crate now no longer differentiates between empty and missing IRCv3 tag values (e.g. @key is equivalent to @key=). The type of the IRCTags struct has changed to hold a HashMap<String, String> instead of a HashMap<String, Option<String>>.

    Where as re-stringifying messages with the above distinction was flawless before, this information is now intentionally discarded during parsing. This means @key= becomes @key if the message is parsed and re-stringified (This is the recommended way, according to the standard).

    See also: #186 and #196

  • Breaking: Removed ban(), unban(), timeout() and untimeout() since they are no longer supported by Twitch. They were previously deprecated in v4.1.0 (#197)

  • Breaking: Fixed typo in RoomStateMessage's follower mode (was follwers_only, is now followers_only). (#200)

  • Breaking: SubMysteryGift::sender_total_gifts is now an Option because the tag is missing when Twitch gift subs during SUBtember (#215)

  • Breaking: In twitch_irc::transport::websocket::WSTransport, the error types have been changed from tungstenite::error::Error to Box<tungstenite::error::Error> to reduce the size of the error variant in the data pipeline. (#221)

  • Breaking: Update to async-tungstenite v0.34, reqwest v0.13, tokio-rustls v0.26, webpki-roots v1. (#222)

    • With this, the feature flags refreshing-token-rustls-native-roots, transport-tcp-rustls-native-roots and transport-ws-rustls-native-roots now use rustls-platform-verifier instead of rustls-native-certs now (see the docs for further reading).
  • Breaking: Update to prometheus 0.14 (Careful, if you have multiple versions of prometheus in your crate, some of your metrics will go missing, because the default global registry lives inside the library.)

  • Minor: Added support for reply-parent tags (#189)

  • Minor: Tokens in CredentialsPair and UserAccessToken are now redacted in their Debug output. Same applies to the client_secret in RefreshingLoginCredentials. (#199)

  • Minor: Added example demonstrating usage of metrics-collection feature as well as an exemplary grafana dashboard template. (#203, #208)

  • Dev: Updated Rust edition to 2024. (#219)

Commits

Updates twitch_api from 2f740ef to f8b2e74

Commits
  • f8b2e74 chore(deps): update codecov/codecov-action action to v6 (#518)
  • dec0ff3 chore(deps): update codecov/codecov-action action to v6
  • c01b458 feat: add missing clips endpoints (#517)
  • b730b8c feat: add Get Clips Download
  • 64dbbdd feat: add Create Clip From VOD
  • 7dffc3e deps: update twitch_oauth2, rustls-webpki, and aws-lc-rs (#516)
  • b7606e1 deps: update aws-lc-rs
  • 9284083 deps: update rustls-webpki
  • 1de70fd deps: update twitch_oauth2
  • fc07c40 Use RPITIT for Client and update reqwest and twitch_oauth2 (#515)
  • Additional commits viewable in compare view

Updates tokio from 1.49.0 to 1.51.0

Release notes

Sourced from tokio's releases.

Tokio v1.51.0

1.51.0 (April 3rd, 2026)

Added

  • net: implement get_peer_cred on Hurd (#7989)
  • runtime: add tokio::runtime::worker_index() (#7921)
  • runtime: add runtime name (#7924)
  • runtime: stabilize LocalRuntime (#7557)
  • wasm: add wasm32-wasip2 networking support (#7933)

Changed

  • runtime: steal tasks from the LIFO slot (#7431)

Fixed

  • docs: do not show "Available on non-loom only." doc label (#7977)
  • macros: improve overall macro hygiene (#7997)
  • sync: fix notify_waiters priority in Notify (#7996)
  • sync: fix panic in Chan::recv_many when called with non-empty vector on closed channel (#7991)

#7431: tokio-rs/tokio#7431 #7557: tokio-rs/tokio#7557 #7921: tokio-rs/tokio#7921 #7924: tokio-rs/tokio#7924 #7933: tokio-rs/tokio#7933 #7977: tokio-rs/tokio#7977 #7989: tokio-rs/tokio#7989 #7991: tokio-rs/tokio#7991 #7996: tokio-rs/tokio#7996 #7997: tokio-rs/tokio#7997

Tokio v1.50.0

1.50.0 (Mar 3rd, 2026)

Added

  • net: add TcpStream::set_zero_linger (#7837)
  • rt: add is_rt_shutdown_err (#7771)

Changed

  • io: add optimizer hint that memchr returns in-bounds pointer (#7792)
  • io: implement vectored writes for write_buf (#7871)
  • runtime: panic when event_interval is 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)

... (truncated)

Commits

Updates futures-util from 0.3.31 to 0.3.32

Release notes

Sourced from futures-util's releases.

0.3.32

  • Bump MSRV of utility crates to 1.71. (#2989)
  • Soft-deprecate ready! macro in favor of std::task::ready! added in Rust 1.64 (#2925)
  • Soft-deprecate pin_mut! macro in favor of std::pin::pin! added in Rust 1.68 (#2929)
  • Add FuturesOrdered::clear (#2927)
  • Add mpsc::*Receiver::recv (#2947)
  • Add mpsc::*Receiver::try_recv and deprecate mpsc::*Receiver::::try_next (#2944)
  • Implement FusedStream for sink::With (#2948)
  • Add no_std support for shared (#2868)
  • Make Mutex::new() const (#2956)
  • Add #[clippy::has_significant_drop] to guards (#2967)
  • Remove dependency to pin-utils (#2929)
  • Remove dependency on num_cpus (#2946)
  • Performance improvements (#2983)
  • Documentation improvements (#2925, #2926, #2940, #2971)
Changelog

Sourced from futures-util's changelog.

0.3.32 - 2026-02-15

  • Bump MSRV of utility crates to 1.71. (#2989)
  • Soft-deprecate ready! macro in favor of std::task::ready! added in Rust 1.64 (#2925)
  • Soft-deprecate pin_mut! macro in favor of std::pin::pin! added in Rust 1.68 (#2929)
  • Add FuturesOrdered::clear (#2927)
  • Add mpsc::*Receiver::recv (#2947)
  • Add mpsc::*Receiver::try_recv and deprecate mpsc::*Receiver::::try_next (#2944)
  • Implement FusedStream for sink::With (#2948)
  • Add no_std support for shared (#2868)
  • Make Mutex::new() const (#2956)
  • Add #[clippy::has_significant_drop] to guards (#2967)
  • Remove dependency to pin-utils (#2929)
  • Remove dependency on num_cpus (#2946)
  • Performance improvements (#2983)
  • Documentation improvements (#2925, #2926, #2940, #2971)
Commits
  • d9bba94 Release 0.3.32
  • 151e0b9 Add comments on rust-version field in Cargo.toml
  • 4aaf00c Bump MSRV of utility crates to 1.71
  • a4cce12 perf: improve AtomicWaker::wake performance (#2983)
  • ba9d102 Add #[clippy::has_significant_drop] to guards (#2967)
  • 20396a8 Fix rustdoc::broken_intra_doc_links warning
  • 815f6eb Fix documentation of BiLock::lock (#2971)
  • 0f0db04 futures-util: make Mutex::new() const (#2956)
  • 5d6fc5e ci: Test big-endian target (s390x Linux)
  • 9f739fe Ignore dead_code lint on Fn1 trait
  • Additional commits viewable in compare view

Updates futures from 0.3.31 to 0.3.32

Release notes

Sourced from futures's releases.

0.3.32

  • Bump MSRV of utility crates to 1.71. (#2989)
  • Soft-deprecate ready! macro in favor of std::task::ready! added in Rust 1.64 (#2925)
  • Soft-deprecate pin_mut! macro in favor of std::pin::pin! added in Rust 1.68 (#2929)
  • Add FuturesOrdered::clear (#2927)
  • Add mpsc::*Receiver::recv (#2947)
  • Add mpsc::*Receiver::try_recv and deprecate mpsc::*Receiver::::try_next (#2944)
  • Implement FusedStream for sink::With (#2948)
  • Add no_std support for shared (#2868)
  • Make Mutex::new() const (#2956)
  • Add #[clippy::has_significant_drop] to guards (#2967)
  • Remove dependency to pin-utils (#2929)
  • Remove dependency on num_cpus (#2946)
  • Performance improvements (#2983)
  • Documentation improvements (#2925, #2926, #2940, #2971)
Changelog

Sourced from futures's changelog.

0.3.32 - 2026-02-15

  • Bump MSRV of utility crates to 1.71. (#2989)
  • Soft-deprecate ready! macro in favor of std::task::ready! added in Rust 1.64 (#2925)
  • Soft-deprecate pin_mut! macro in favor of std::pin::pin! added in Rust 1.68 (#2929)
  • Add FuturesOrdered::clear (#2927)
  • Add mpsc::*Receiver::recv (#2947)
  • Add mpsc::*Receiver::try_recv and deprecate mpsc::*Receiver::::try_next (#2944)
  • Implement FusedStream for sink::With (#2948)
  • Add no_std support for shared (#2868)
  • Make Mutex::new() const (#2956)
  • Add #[clippy::has_significant_drop] to guards (#2967)
  • Remove dependency to pin-utils (#2929)
  • Remove dependency on num_cpus (#2946)
  • Performance improvements (#2983)
  • Documentation improvements (#2925, #2926, #2940, #2971)
Commits
  • d9bba94 Release 0.3.32
  • 151e0b9 Add comments on rust-version field in Cargo.toml
  • 4aaf00c Bump MSRV of utility crates to 1.71
  • a4cce12 perf: improve AtomicWaker::wake performance (#2983)
  • ba9d102 Add #[clippy::has_significant_drop] to guards (#2967)
  • 20396a8 Fix rustdoc::broken_intra_doc_links warning
  • 815f6eb Fix documentation of BiLock::lock (#2971)
  • 0f0db04 futures-util: make Mutex::new() const (#2956)
  • 5d6fc5e ci: Test big-endian target (s390x Linux)
  • 9f739fe Ignore dead_code lint on Fn1 trait
  • Additional commits viewable in compare view

Updates serde_qs from 0.15.0 to 1.1.1

Release notes

Sourced from serde_qs's releases.

v1.1.1

Other

  • Cargo feature / dependency cleanup (#165)

v1.1.0

Added

  • add DuplicateKeyBehavior config option (#162)

v1.0.0

Other

  • fix typos and improve clarity in documentation comments (#157)

v1.0.0-rc.5

Other

  • fix typos and improve clarity in documentation comments (#157)

v1.0.0-rc.4

Other

  • Bump warp (#156)
  • Update deserialization logic + add principles. (#147)
  • Bump MSRV + add profiling examples (#154)

v1.0.0-rc.3

Other

  • Error when hitting serialization max depth (#144)
  • Deserialize empty value as bool=true (#142)

v1.0.0-rc.2

Other

  • Cleanup of web utils remove redundant OptionalQsQuery (since Option<T> now works) and add QsForm (#140)
  • More tests / minor change to field encoding (#139)

v1.0.0-rc.1

Other

  • Fix maps with integer keys. (#138)
  • Support explicit serialization formatting for arrays. (#137)
  • v1 changelog (and more tests) (#135)

v1.0.0-rc.0

Release candidate for stable v1 release

... (truncated)

Changelog

Sourced from serde_qs's changelog.

1.1.1 - 2026-04-05

Other

  • Cargo feature / dependency cleanup (#165)

1.1.0 - 2026-03-21

Added

  • add DuplicateKeyBehavior config option (#162)

1.0.0 - 2026-01-09

Other

  • fix typos and improve clarity in documentation comments (#157)

1.0.0-rc.4 - 2025-12-14

Other

  • Bump warp (#156)
  • Update deserialization logic + add principles. (#147)
  • Bump MSRV + add profiling examples (#154)

1.0.0-rc.3 - 2025-05-27

Other

  • Error when hitting serialization max depth (#144)
  • Deserialize empty value as bool=true (#142)

1.0.0-rc.2 - 2025-05-27

Other

  • Cleanup of web utils remove redundant OptionalQsQuery (since Option<T> now works) and add QsForm (#140)
  • More tests / minor change to field encoding (#139)

1.0.0-rc.1 - 2025-05-26

Other

  • Fix maps with integer keys. (#138)
  • Support explicit serialization formatting for arrays. (#137)
  • v1 changelog (and more tests) (#135)

1.0.0-rc.0 - 2025-05-26

... (truncated)

Commits

Updates deadpool-redis from 0.22.1 to 0.23.0

Commits
  • 599cf80 Release deadpool-redis 0.23.0
  • b20a05d Re-export missing features and fix check script
  • 6b15f2a Update redis to version 1
  • e842bd0 Release deadpool-sqlite 0.13
  • b134227 Release deadpool 0.13.0 and deadpool-sync 0.2.0
  • 688234b Update lapin to version 4
  • 362391f Release deadpool-runtime 0.3.1
  • 70f1b93 Fix feature specific dependencies in READMEs
  • 860570c Add rustdoc-args = ["--cfg", "docsrs"] to all Cargo.toml files
  • 7a00e9c Fix deadpool CHANGELOG and improve yank explanation
  • Additional commits viewable in compare view

Updates reqwest from 0.12.28 to 0.13.2

Release notes

Sourced from reqwest's releases.

v0.13.2

tl;dr

  • Fix HTTP/2 and native-tls ALPN feature combinations.
  • Fix HTTP/3 to send h3 ALPN.
  • (wasm) fix RequestBuilder::json() from override previously set content-type.

What's Changed

New Contributors

Full Changelog: seanmonstar/reqwest@v0.13.1...v0.13.2

v0.13.1

What's Changed

Full Changelog: seanmonstar/reqwest@v0.13.0...v0.13.1

v0.13.0

Breaking changes

  • rustls is now the default TLS backend, instead of native-tls.
  • rustls crypto provider defaults to aws-lc instead of ring. (rustls-no-provider exists if you want a different crypto provider)
  • rustls-tls has been renamed to rustls.
  • rustls roots features removed, rustls-platform-verifier is used by default.
    • To use different roots, call tls_certs_only(your_roots).
  • native-tls now includes ALPN. To disable, use native-tls-no-alpn.
  • query and form are now crate features, disabled by default.
  • Long-deprecated methods and crate features have been removed (such as trust-dns, which was renamed hickory-dns a while ago).

... (truncated)

Changelog

Sourced from reqwest's changelog.

v0.13.2

  • Fix HTTP/2 and native-tls ALPN feature combinations.
  • Fix HTTP/3 to send h3 ALPN.
  • (wasm) fix RequestBuilder::json() from override previously set content-type.

v0.13.1

  • Fixes compiling with rustls on Android targets.

v0.13.0

  • Breaking changes:
    • rustls is now the default TLS backend, instead of native-tls.
    • rustls crypto provider defaults to aws-lc instead of ring. (rustls-no-provider exists if you want a different crypto provider)
    • rustls-tls has been renamed to rustls.
    • rustls roots features removed, rustls-platform-verifier is used by default.
      • To use different roots, call tls_certs_only(your_roots).
    • native-tls now includes ALPN. To disable, use native-tls-no-alpn.
    • query and form are now crate features, disabled by default.
    • Long-deprecated methods and crate features have been removed (such as trust-dns, which was renamed hickory-dns a while ago).
  • Many TLS-related methods renamed to improve autocompletion and discovery, but previous name left in place with a "soft" deprecation. (just documented, no warnings)
    • For example, prefer tls_backend_rustls() over use_rustls_tls().
Commits

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

| Package | From | To |
| --- | --- | --- |
| [actix-web](https://github.com/actix/actix-web) | `4.12.1` | `4.13.0` |
| [actix-files](https://github.com/actix/actix-web) | `0.6.9` | `0.6.10` |
| [twitch-irc](https://github.com/robotty/twitch-irc-rs) | `5.0.1` | `6.0.0` |
| [twitch_api](https://github.com/twitch-rs/twitch_api) | ``2f740ef`` | ``f8b2e74`` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.49.0` | `1.51.0` |
| [futures-util](https://github.com/rust-lang/futures-rs) | `0.3.31` | `0.3.32` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.31` | `0.3.32` |
| [serde_qs](https://github.com/samscott89/serde_qs) | `0.15.0` | `1.1.1` |
| [deadpool-redis](https://github.com/deadpool-rs/deadpool) | `0.22.1` | `0.23.0` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.28` | `0.13.2` |
| [jsonwebtoken](https://github.com/Keats/jsonwebtoken) | `10.2.0` | `10.3.0` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.43` | `0.4.44` |
| [time](https://github.com/time-rs/time) | `0.3.46` | `0.3.47` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.100` | `1.0.102` |
| [rand](https://github.com/rust-random/rand) | `0.9.2` | `0.10.0` |
| [regex](https://github.com/rust-lang/regex) | `1.12.2` | `1.12.3` |
| [once_cell](https://github.com/matklad/once_cell) | `1.21.3` | `1.21.4` |
| [pin-project](https://github.com/taiki-e/pin-project) | `1.1.10` | `1.1.11` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.8` | `0.11.10` |
| [sha2](https://github.com/RustCrypto/hashes) | `0.10.9` | `0.11.0` |
| [hmac](https://github.com/RustCrypto/MACs) | `0.12.1` | `0.13.0` |
| [tokio-postgres](https://github.com/rust-postgres/rust-postgres) | `0.7.16` | `0.7.17` |
| [toml](https://github.com/toml-rs/toml) | `0.9.11+spec-1.1.0` | `1.1.2+spec-1.1.0` |



Updates `actix-web` from 4.12.1 to 4.13.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/main/CHANGES.md)
- [Commits](actix/actix-web@web-v4.12.1...web-v4.13.0)

Updates `actix-files` from 0.6.9 to 0.6.10
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/v0.6.10/CHANGES.md)
- [Commits](actix/actix-web@v0.6.9...v0.6.10)

Updates `twitch-irc` from 5.0.1 to 6.0.0
- [Release notes](https://github.com/robotty/twitch-irc-rs/releases)
- [Changelog](https://github.com/robotty/twitch-irc-rs/blob/master/CHANGELOG.md)
- [Commits](robotty/twitch-irc-rs@v5.0.1...v6.0.0)

Updates `twitch_api` from `2f740ef` to `f8b2e74`
- [Release notes](https://github.com/twitch-rs/twitch_api/releases)
- [Commits](twitch-rs/twitch_api@2f740ef...f8b2e74)

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

Updates `futures-util` from 0.3.31 to 0.3.32
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.31...0.3.32)

Updates `futures` from 0.3.31 to 0.3.32
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.31...0.3.32)

Updates `serde_qs` from 0.15.0 to 1.1.1
- [Release notes](https://github.com/samscott89/serde_qs/releases)
- [Changelog](https://github.com/samscott89/serde_qs/blob/main/CHANGELOG.md)
- [Commits](samscott89/serde_qs@v0.15.0...v1.1.1)

Updates `deadpool-redis` from 0.22.1 to 0.23.0
- [Changelog](https://github.com/deadpool-rs/deadpool/blob/main/release.toml)
- [Commits](deadpool-rs/deadpool@deadpool-redis-v0.22.1...deadpool-redis-v0.23.0)

Updates `reqwest` from 0.12.28 to 0.13.2
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.28...v0.13.2)

Updates `jsonwebtoken` from 10.2.0 to 10.3.0
- [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md)
- [Commits](Keats/jsonwebtoken@v10.2.0...v10.3.0)

Updates `chrono` from 0.4.43 to 0.4.44
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.43...v0.4.44)

Updates `time` from 0.3.46 to 0.3.47
- [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.46...v0.3.47)

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

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

Updates `regex` from 1.12.2 to 1.12.3
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.12.2...1.12.3)

Updates `once_cell` from 1.21.3 to 1.21.4
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.21.3...v1.21.4)

Updates `pin-project` from 1.1.10 to 1.1.11
- [Release notes](https://github.com/taiki-e/pin-project/releases)
- [Changelog](https://github.com/taiki-e/pin-project/blob/main/CHANGELOG.md)
- [Commits](taiki-e/pin-project@v1.1.10...v1.1.11)

Updates `env_logger` from 0.11.8 to 0.11.10
- [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.11.8...v0.11.10)

Updates `sha2` from 0.10.9 to 0.11.0
- [Commits](RustCrypto/hashes@sha2-v0.10.9...sha2-v0.11.0)

Updates `hmac` from 0.12.1 to 0.13.0
- [Commits](RustCrypto/MACs@hmac-v0.12.1...hmac-v0.13.0)

Updates `tokio-postgres` from 0.7.16 to 0.7.17
- [Release notes](https://github.com/rust-postgres/rust-postgres/releases)
- [Commits](rust-postgres/rust-postgres@tokio-postgres-v0.7.16...tokio-postgres-v0.7.17)

Updates `toml` from 0.9.11+spec-1.1.0 to 1.1.2+spec-1.1.0
- [Commits](toml-rs/toml@toml-v0.9.11...toml-v1.1.2)

---
updated-dependencies:
- dependency-name: actix-web
  dependency-version: 4.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: actix-files
  dependency-version: 0.6.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: twitch-irc
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: twitch_api
  dependency-version: f8b2e74685b7f963729804530181a396cbf95044
  dependency-type: direct:production
  dependency-group: rust
- dependency-name: tokio
  dependency-version: 1.51.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: futures-util
  dependency-version: 0.3.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: futures
  dependency-version: 0.3.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: serde_qs
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: deadpool-redis
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: reqwest
  dependency-version: 0.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: jsonwebtoken
  dependency-version: 10.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: chrono
  dependency-version: 0.4.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: time
  dependency-version: 0.3.47
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: anyhow
  dependency-version: 1.0.102
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rand
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: regex
  dependency-version: 1.12.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: once_cell
  dependency-version: 1.21.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: pin-project
  dependency-version: 1.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: env_logger
  dependency-version: 0.11.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: sha2
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: hmac
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tokio-postgres
  dependency-version: 0.7.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: toml
  dependency-version: 1.1.2+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
...

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 6, 2026
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