Update Rust crate actix-session to 0.10.0 #151

Merged
pierre merged 1 commits from renovate/actix-session-0.x into master 2024-08-26 00:45:27 +00:00
2 changed files with 19 additions and 3 deletions

View File

@ -128,7 +128,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2c99b7a5614b72a78f04aa2021e5370fc1aef2475fffeffc0c1266b99007062" checksum = "f2c99b7a5614b72a78f04aa2021e5370fc1aef2475fffeffc0c1266b99007062"
dependencies = [ dependencies = [
"actix-service", "actix-service",
"actix-session", "actix-session 0.9.0",
"actix-utils", "actix-utils",
"actix-web", "actix-web",
"derive_more", "derive_more",
@ -265,6 +265,22 @@ dependencies = [
"tracing", "tracing",
] ]
[[package]]
name = "actix-session"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac013ca53d36acb0cc60f5437381c97c291f51a12a5bd8d02febc3a3aaf53390"
dependencies = [
"actix-service",
"actix-utils",
"actix-web",
"anyhow",
"derive_more",
"serde",
"serde_json",
"tracing",
]
[[package]] [[package]]
name = "actix-utils" name = "actix-utils"
version = "3.0.1" version = "3.0.1"
@ -3449,7 +3465,7 @@ dependencies = [
"actix-identity", "actix-identity",
"actix-multipart", "actix-multipart",
"actix-remote-ip", "actix-remote-ip",
"actix-session", "actix-session 0.10.0",
"actix-web", "actix-web",
"actix-web-actors", "actix-web-actors",
"anyhow", "anyhow",

View File

@ -14,7 +14,7 @@ lazy_static = "1.4.0"
actix = "0.13.3" actix = "0.13.3"
actix-web = "4.5.1" actix-web = "4.5.1"
actix-remote-ip = "0.1.0" actix-remote-ip = "0.1.0"
actix-session = { version = "0.9.0", features = ["cookie-session"] } actix-session = { version = "0.10.0", features = ["cookie-session"] }
actix-identity = "0.7.1" actix-identity = "0.7.1"
actix-cors = "0.7.0" actix-cors = "0.7.0"
actix-files = "0.6.5" actix-files = "0.6.5"