chore(deps): bump redis from 0.26.0 to 0.27.5

Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.26.0 to 0.27.5.
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.26.0...redis-0.27.5)

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

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2024-10-22 02:15:38 +00:00 коммит произвёл GitHub
Родитель 1f49088a14
Коммит 5f7b93af99
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 20 добавлений и 5 удалений

23
Cargo.lock сгенерированный
Просмотреть файл

@ -1367,7 +1367,7 @@ dependencies = [
"futures-core",
"miette",
"php-literal-parser",
"redis",
"redis 0.26.1",
"thiserror",
"urlencoding",
]
@ -1414,7 +1414,7 @@ dependencies = [
"parse-display",
"percent-encoding",
"rand",
"redis",
"redis 0.27.5",
"reqwest",
"sd-notify",
"serde",
@ -1804,9 +1804,24 @@ dependencies = [
[[package]]
name = "redis"
version = "0.26.0"
version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cc5b667390cb038bc65fc4b18c06e2550469f7e06a02d886f1a018a11f63563"
checksum = "e902a69d09078829137b4a5d9d082e0490393537badd7c91a3d69d14639e115f"
dependencies = [
"arc-swap",
"combine",
"itoa",
"num-bigint",
"percent-encoding",
"ryu",
"url",
]
[[package]]
name = "redis"
version = "0.27.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cccf17a692ce51b86564334614d72dcae1def0fd5ecebc9f02956da74352b5"
dependencies = [
"arc-swap",
"async-trait",

Просмотреть файл

@ -8,7 +8,7 @@ edition = "2021"
rust-version = "1.74.1"
[dependencies]
redis = { version = "0.26.0", default-features = false, features = ["tokio-comp", "aio", "cluster", "cluster-async", "keep-alive"] }
redis = { version = "0.27.5", default-features = false, features = ["tokio-comp", "aio", "cluster", "cluster-async", "keep-alive"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
thiserror = "1.0.63"