1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-08-29 02:47:48 +02:00

build(deps): bump deadpool-redis from 0.20.0 to 0.22.0 (#543)

* build(deps): bump deadpool-redis from 0.20.0 to 0.21.1

Bumps [deadpool-redis](https://github.com/bikeshedder/deadpool) from 0.20.0 to 0.21.1.
- [Changelog](https://github.com/deadpool-rs/deadpool/blob/master/CHANGELOG.md)
- [Commits](https://github.com/bikeshedder/deadpool/compare/deadpool-redis-v0.20.0...deadpool-redis-v0.21.1)

---
updated-dependencies:
- dependency-name: deadpool-redis
  dependency-version: 0.21.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update redis crate

* Update MSRV

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com>
This commit is contained in:
dependabot[bot]
2025-08-22 16:52:57 +09:00
committed by GitHub
parent 2b657e4a62
commit 1fee1a47b4
14 changed files with 48 additions and 27 deletions

View File

@@ -22,7 +22,7 @@ jobs:
target:
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
version:
- { name: msrv, version: 1.75.0 }
- { name: msrv, version: 1.80.0 }
- { name: stable, version: stable }
name: ${{ matrix.target.name }} / ${{ matrix.version.name }}
@@ -82,7 +82,7 @@ jobs:
- { name: macOS, os: macos-latest, triple: x86_64-apple-darwin }
- { name: Windows, os: windows-latest, triple: x86_64-pc-windows-msvc }
version:
- { name: msrv, version: 1.75.0 }
- { name: msrv, version: 1.80.0 }
- { name: stable, version: stable }
name: ${{ matrix.target.name }} / ${{ matrix.version.name }}

40
Cargo.lock generated
View File

@@ -95,7 +95,7 @@ dependencies = [
"serde_json",
"serde_urlencoded",
"slab",
"socket2",
"socket2 0.5.9",
"tokio",
]
@@ -191,7 +191,7 @@ dependencies = [
"futures-core",
"futures-util",
"mio",
"socket2",
"socket2 0.5.9",
"tokio",
"tracing",
]
@@ -334,7 +334,7 @@ dependencies = [
"serde_json",
"serde_urlencoded",
"smallvec",
"socket2",
"socket2 0.5.9",
"time",
"tracing",
"url",
@@ -576,9 +576,9 @@ dependencies = [
[[package]]
name = "backon"
version = "1.5.0"
version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd0b50b1b78dbadd44ab18b3c794e496f3a139abb9fbc27d9c94c4eebbb96496"
checksum = "592277618714fbcecda9a02ba7a8781f319d26532a88553bbacc77ba5d2b3a8d"
dependencies = [
"fastrand",
]
@@ -852,9 +852,9 @@ dependencies = [
[[package]]
name = "deadpool-redis"
version = "0.20.0"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c136f185b3ca9d1f4e4e19c11570e1002f4bfdd592d589053e225716d613851f"
checksum = "c0965b977f1244bc3783bb27cd79cfcff335a8341da18f79232d00504b18eb1a"
dependencies = [
"deadpool",
"redis",
@@ -1269,7 +1269,7 @@ dependencies = [
"libc",
"percent-encoding",
"pin-project-lite",
"socket2",
"socket2 0.5.9",
"tokio",
"tower-service",
"tracing",
@@ -1569,9 +1569,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
[[package]]
name = "libc"
version = "0.2.171"
version = "0.2.175"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
[[package]]
name = "linux-raw-sys"
@@ -2021,13 +2021,14 @@ dependencies = [
[[package]]
name = "redis"
version = "0.29.5"
version = "0.32.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bc42f3a12fd4408ce64d8efef67048a924e543bd35c6591c0447fda9054695f"
checksum = "7cd3650deebc68526b304898b192fa4102a4ef0b9ada24da096559cb60e0eef8"
dependencies = [
"arc-swap",
"backon",
"bytes",
"cfg-if",
"combine",
"futures-channel",
"futures-util",
@@ -2039,7 +2040,7 @@ dependencies = [
"rustls",
"rustls-native-certs",
"ryu",
"socket2",
"socket2 0.6.0",
"tokio",
"tokio-native-tls",
"tokio-rustls",
@@ -2180,7 +2181,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "822ee9188ac4ec04a2f0531e55d035fb2de73f18b41a63c70c2712503b6fb13c"
dependencies = [
"once_cell",
"ring",
"rustls-pki-types",
"rustls-webpki",
"subtle",
@@ -2403,6 +2403,16 @@ dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "socket2"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
dependencies = [
"libc",
"windows-sys 0.59.0",
]
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
@@ -2531,7 +2541,7 @@ dependencies = [
"pin-project-lite",
"signal-hook-registry",
"slab",
"socket2",
"socket2 0.5.9",
"tokio-macros",
"windows-sys 0.52.0",
]

View File

@@ -16,7 +16,7 @@ repository = "https://github.com/actix/actix-extras"
homepage = "https://actix.rs"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.75"
rust-version = "1.80"
[workspace.lints.rust]
rust-2018-idioms = { level = "deny" }

View File

@@ -2,6 +2,8 @@
## Unreleased
- Minimum supported Rust version (MSRV) is now 1.80.
## 0.7.1
- Implement `PartialEq` for `Cors` allowing for better testing.

View File

@@ -4,7 +4,7 @@
[![crates.io](https://img.shields.io/crates/v/actix-cors?label=latest)](https://crates.io/crates/actix-cors)
[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.7.1)](https://docs.rs/actix-cors/0.7.1)
![Version](https://img.shields.io/badge/rustc-1.75+-ab6000.svg)
![Version](https://img.shields.io/badge/rustc-1.80+-ab6000.svg)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-cors.svg)
<br />
[![Dependency Status](https://deps.rs/crate/actix-cors/0.7.1/status.svg)](https://deps.rs/crate/actix-cors/0.7.1)
@@ -69,4 +69,4 @@ async fn main() -> std::io::Result<()> {
- [API Documentation](https://docs.rs/actix-cors)
- [Example Project](https://github.com/actix/examples/tree/master/cors)
- Minimum Supported Rust Version (MSRV): 1.75
- Minimum Supported Rust Version (MSRV): 1.80

View File

@@ -2,6 +2,8 @@
## Unreleased
- Minimum supported Rust version (MSRV) is now 1.80.
## 0.8.0
- Update `actix-session` dependency to `0.10`.

View File

@@ -2,7 +2,7 @@
## Unreleased
- Update `redis` dependency to `0.29`.
- Update `redis` dependency to `0.32`.
- Update `actix-session` dependency to `0.9`.
## 0.5.1

View File

@@ -28,7 +28,7 @@ actix-web = { version = "4", default-features = false, features = ["cookies"] }
chrono = "0.4"
derive_more = { version = "2", features = ["display", "error", "from"] }
log = "0.4"
redis = { version = "0.29", default-features = false, features = ["tokio-comp"] }
redis = { version = "0.32", default-features = false, features = ["tokio-comp"] }
time = "0.3"
# session

View File

@@ -2,6 +2,8 @@
## Unreleased
- Minimum supported Rust version (MSRV) is now 1.80.
## 0.11.0
- Updated `prost` dependency to `0.13`.

View File

@@ -4,7 +4,8 @@
- Add `Session::contains_key` method.
- Add `Session::update[_or]()` methods.
- Update `redis` dependency to `0.29`.
- Update `redis` dependency to `0.32`.
- Minimum supported Rust version (MSRV) is now 1.80.
## 0.10.1

View File

@@ -38,8 +38,8 @@ serde_json = { version = "1" }
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
# redis-session
redis = { version = "0.29", default-features = false, features = ["tokio-comp", "connection-manager"], optional = true }
deadpool-redis = { version = "0.20", optional = true }
redis = { version = "0.32", default-features = false, features = ["tokio-comp", "connection-manager"], optional = true }
deadpool-redis = { version = "0.22", optional = true }
[dev-dependencies]
actix-session = { path = ".", features = ["cookie-session", "redis-session"] }

View File

@@ -2,6 +2,8 @@
## Unreleased
- Minimum supported Rust version (MSRV) is now 1.80.
## 0.8.0
- Add `openssl` crate feature for TLS settings using OpenSSL.

View File

@@ -2,6 +2,8 @@
## Unreleased
- Minimum supported Rust version (MSRV) is now 1.80.
## 0.8.2
- Minimum supported Rust version (MSRV) is now 1.75.

View File

@@ -6,7 +6,7 @@
[![crates.io](https://img.shields.io/crates/v/actix-ws?label=latest)](https://crates.io/crates/actix-ws)
[![Documentation](https://docs.rs/actix-ws/badge.svg?version=0.3.0)](https://docs.rs/actix-ws/0.3.0)
![Version](https://img.shields.io/badge/rustc-1.75+-ab6000.svg)
![Version](https://img.shields.io/badge/rustc-1.80+-ab6000.svg)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-ws.svg)
<br />
[![Dependency Status](https://deps.rs/crate/actix-ws/0.3.0/status.svg)](https://deps.rs/crate/actix-ws/0.3.0)
@@ -62,7 +62,7 @@ async fn main() -> std::io::Result<()> {
- [API Documentation](https://docs.rs/actix-ws)
- [Example Chat Project](https://github.com/actix/examples/tree/master/websockets/chat-actorless)
- Minimum Supported Rust Version (MSRV): 1.75
- Minimum Supported Rust Version (MSRV): 1.80
## License