Nerixyz / current-song2

Display the currently playing song/audio.
https://currentsong.nerixyz.de
86 stars 7 forks source link

deps(cargo): bump the rust group with 6 updates #412

Closed dependabot[bot] closed 7 months ago

dependabot[bot] commented 7 months ago

Bumps the rust group with 6 updates:

Package From To
tokio 1.35.1 1.36.0
actix 0.13.1 0.13.2
actix-web 4.4.1 4.5.1
actix-web-actors 4.2.0 4.3.0
serde_json 1.0.112 1.0.113
zbus 3.14.1 3.15.0

Updates tokio from 1.35.1 to 1.36.0

Release notes

Sourced from tokio's releases.

Tokio v1.36.0

1.36.0 (February 2nd, 2024)

Added

  • io: add tokio::io::Join (#6220)
  • io: implement AsyncWrite for Empty (#6235)
  • net: add support for anonymous unix pipes (#6127)
  • net: add UnixSocket (#6290)
  • net: expose keepalive option on TcpSocket (#6311)
  • sync: add {Receiver,UnboundedReceiver}::poll_recv_many (#6236)
  • sync: add Sender::{try_,}reserve_many (#6205)
  • sync: add watch::Receiver::mark_unchanged (#6252)
  • task: add JoinSet::try_join_next (#6280)

Changed

  • io: make copy cooperative (#6265)
  • io: make repeat and sink cooperative (#6254)
  • io: simplify check for empty slice (#6293)
  • process: use pidfd on Linux when available (#6152)
  • sync: use AtomicBool in broadcast channel future (#6298)

Documented

  • io: clarify clear_ready docs (#6304)
  • net: document that *Fd traits on TcpSocket are unix-only (#6294)
  • sync: document FIFO behavior of tokio::sync::Mutex (#6279)
  • chore: typographic improvements (#6262)
  • runtime: remove obsolete comment (#6303)
  • task: fix typo (#6261)

#6220: tokio-rs/tokio#6220 #6235: tokio-rs/tokio#6235 #6127: tokio-rs/tokio#6127 #6290: tokio-rs/tokio#6290 #6311: tokio-rs/tokio#6311 #6236: tokio-rs/tokio#6236 #6205: tokio-rs/tokio#6205 #6252: tokio-rs/tokio#6252 #6280: tokio-rs/tokio#6280 #6265: tokio-rs/tokio#6265 #6254: tokio-rs/tokio#6254 #6293: tokio-rs/tokio#6293 #6238: tokio-rs/tokio#6238 #6152: tokio-rs/tokio#6152 #6298: tokio-rs/tokio#6298 #6262: tokio-rs/tokio#6262 #6303: tokio-rs/tokio#6303 #6261: tokio-rs/tokio#6261

... (truncated)

Commits


Updates actix from 0.13.1 to 0.13.2

Release notes

Sourced from actix's releases.

actix: v0.13.2

  • Expose ContextFut::restart.
  • Unquoted types are now allowed in the #[rtype(result = TYPE)] position when type is a path.
Commits
  • a809645 docs: use intra-doc links in crate root
  • 9928306 chore(actix): prepare release 0.13.2
  • fddd075 ci: standardize job names
  • 31b0f4b ci: fix cargo-nextest install
  • 7d40ea5 ci: switch to nextest
  • c0cf913 chore: prevent dead code warnings
  • b555813 chore: prevent dead code warnings
  • 37b92c6 chore: prevent dead code warnings on nightly
  • 66427f9 chore: prevent dead code warning on nightly
  • 5ac0716 chore: prevent unused lint regression on nightly
  • Additional commits viewable in compare view


Updates actix-web from 4.4.1 to 4.5.1

Release notes

Sourced from actix-web's releases.

actix-web: v4.5.1

Fixed

  • Fix missing import when using enabling Rustls v0.22 support.

actix-web: v4.5.0

Added

  • Add rustls-0_22 crate feature.
  • Add HttpServer::{bind_rustls_0_22, listen_rustls_0_22}() builder methods.
Commits
  • 2b8c528 chore(actix-web): prepare release 4.5.1
  • 59bc85f chore(actix-http-test): prepare release 3.2.0
  • 3f2fd2d chore(actix-test): prepare release 0.1.3
  • 17ed73b chore(actix-web-actors): prepare release 4.3.0
  • 73fa118 chore(awc): prepare release 3.4.0
  • 8e9e9fb chore(actix-web): prepare release 4.5.0
  • 8db3de6 chore(actix-http): prepare release 3.6.0
  • 2125aca Rustls v0.22 support (#3275)
  • b1eb57a Update Cargo.toml (#3276)
  • ae7736f Implement From\<&HeaderMap> for http::HeaderMap (#3230)
  • Additional commits viewable in compare view


Updates actix-web-actors from 4.2.0 to 4.3.0

Release notes

Sourced from actix-web-actors's releases.

actix-web: v4.3.0

Added

  • Add ContentDisposition::attachment() constructor. #2867
  • Add ErrorHandlers::default_handler() (as well as default_handler_{server, client}()) to make registering handlers for groups of response statuses easier. #2784
  • Add Logger::custom_response_replace(). #2631
  • Add rudimentary redirection service at web::redirect() / web::Redirect. #1961
  • Add guard::Acceptable for matching against Accept header MIME types. #2265
  • Add fallible versions of test helpers: try_call_service(), try_call_and_read_body_json(), try_read_body(), and try_read_body_json(). #2961

Fixed

  • Add Allow header to Resource's default responses when no routes are matched. #2949

#1961: actix/actix-web#1961 #2265: actix/actix-web#2265 #2631: actix/actix-web#2631 #2784: actix/actix-web#2784 #2867: actix/actix-web#2867 #2949: actix/actix-web#2949 #2961: actix/actix-web#2961

actix-web-actors: v4.3.0

  • Minimum supported Rust version (MSRV) is now 1.68 due to transitive time dependency.

actix-web-codegen: v4.2.2

  • Fix regression when declaring wrap attribute using an expression.

actix-web: v4.2.1

Fixed

  • Bump minimum version of actix-http dependency to fix compatibility issue. #2871

#2871: actix/actix-web#2871

actix-web-codegen: v4.2.1

  • Update syn dependency to 2.
  • Minimum supported Rust version (MSRV) is now 1.68 due to transitive time dependency.
Commits
  • df6fde8 prepare actix-web release 4.3.0
  • 8d4cb8c prepare awc release 3.1.0
  • dd9ac4d prepare actix-http release 3.3.0
  • 72c80f9 update tokio-uring support to 0.4
  • b00fe72 Update base64 to 0.21 (#2966)
  • 2f0b8a2 fix non-empty body of http2 HEAD response (#2920)
  • b9f0faa add cache-status and cdn-cache-control header names (#2968)
  • 6627109 Add fallible versions of test_utils helpers to actix-test (#2961)
  • b9f54c8 use secure tokio version range
  • cfd40b4 Implement MessageBody for Cow\<'static, {[u8], str}> (#2959)
  • Additional commits viewable in compare view


Updates serde_json from 1.0.112 to 1.0.113

Release notes

Sourced from serde_json's releases.

v1.0.113

  • Add swap_remove and shift_remove methods on Map (#1109)
Commits


Updates zbus from 3.14.1 to 3.15.0

Release notes

Sourced from zbus's releases.

πŸ”– zbus 3.15.0

πŸ› Add missing nix feature. 🏷️ Add ResponseDispatchNotifier type. A wrapper interface method response type that notifies the caller of the response being sent off. 🚸 Specify service and object path for Monitoring & Debug.Stats proxies. These defaults to be based on the interface name otherwise and that's not the expected bhaviour. ✏️ Fix a typo in docs.

πŸ”– zbus_macros 3.15.0

No release notes provided.

Commits
  • 6875a03 πŸ”– zb,zm: Release 3.15.0
  • 94f07b7 Revert "🚸 zb: StatsProxy should use strong types"
  • 8925f7c 🎨 zb: Fix Cargo.toml formatting
  • 62be05f Merge pull request #568 from bilelmoussaoui/patch-1
  • 1095cfd zb: Add missing nix feature
  • b95c6a3 Revert "Merge pull request #397 from zeenix/monitoring-proxy-improv"
  • 62a3a43 Merge pull request #406 from mercedes-benz/fix-ip-address
  • 427bf53 πŸš‘οΈ Correct signature for Ipv4Address & Ipv6Address
  • 1df5fa2 πŸ§ͺ zv: Add testcase for Ipv4Address & Ipv6Address ser/de
  • 79ad20b Merge pull request #402 from zeenix/response-notify
  • 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 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions