Update Rust crate redis to 0.27

This commit is contained in:
renovate[bot] 2024-09-12 11:32:01 +00:00 committed by GitHub
parent f0a8102132
commit 3ce3dfcc4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 24 additions and 4 deletions

26
Cargo.lock generated
View file

@ -1113,7 +1113,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
dependencies = [
"cfg-if",
"windows-targets 0.48.5",
"windows-targets 0.52.6",
]
[[package]]
@ -1355,6 +1355,25 @@ dependencies = [
"winapi",
]
[[package]]
name = "num-bigint"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
dependencies = [
"num-integer",
"num-traits",
]
[[package]]
name = "num-integer"
version = "0.1.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
dependencies = [
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.19"
@ -1726,9 +1745,9 @@ dependencies = [
[[package]]
name = "redis"
version = "0.25.4"
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0d7a6955c7511f60f3ba9e86c6d02b3c3f144f8c24b288d1f4e18074ab8bbec"
checksum = "6408b7e62e108fa36b8e44cffa98ae36570cf32cbc996cc3af1f5ecde8782c37"
dependencies = [
"arc-swap",
"async-trait",
@ -1737,6 +1756,7 @@ dependencies = [
"futures",
"futures-util",
"itoa",
"num-bigint",
"percent-encoding",
"pin-project-lite",
"ryu",

View file

@ -30,5 +30,5 @@ metrics-exporter-prometheus = "0.15"
deunicode = "1.4"
urlencoding = "2"
httpdate = "1"
redis = { version = "0.25", features = ["tokio-comp", "connection-manager"] }
redis = { version = "0.27", features = ["tokio-comp", "connection-manager"] }
lru = "0.12"