1 Commits

Author SHA1 Message Date
efbac767b6 Update Rust crate actix-identity to 0.9.0
Some checks failed
continuous-integration/drone/push Build is failing
2025-10-25 00:42:15 +00:00
2 changed files with 23 additions and 6 deletions

View File

@@ -101,15 +101,15 @@ dependencies = [
[[package]] [[package]]
name = "actix-identity" name = "actix-identity"
version = "0.8.0" version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b8ddc6f6a8b19c4016aaa13519968da9969bc3bc1c1c883cdb0f25dd6c8cf7" checksum = "810f47733f956175bd5b2ae17ae5237fa92bd1b6a4a65f646a7240dbe9ff2728"
dependencies = [ dependencies = [
"actix-service", "actix-service",
"actix-session", "actix-session 0.11.0",
"actix-utils", "actix-utils",
"actix-web", "actix-web",
"derive_more 1.0.0", "derive_more 2.0.1",
"futures-core", "futures-core",
"serde", "serde",
"tracing", "tracing",
@@ -243,6 +243,23 @@ dependencies = [
"tracing", "tracing",
] ]
[[package]]
name = "actix-session"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "400c27fd4cdbe0082b7bbd29ac44a3070cbda1b2114138dc106ba39fe2f90dff"
dependencies = [
"actix-service",
"actix-utils",
"actix-web",
"anyhow",
"derive_more 2.0.1",
"rand 0.9.2",
"serde",
"serde_json",
"tracing",
]
[[package]] [[package]]
name = "actix-tls" name = "actix-tls"
version = "3.4.0" version = "3.4.0"
@@ -669,7 +686,7 @@ dependencies = [
"actix-identity", "actix-identity",
"actix-multipart", "actix-multipart",
"actix-remote-ip", "actix-remote-ip",
"actix-session", "actix-session 0.10.1",
"actix-web", "actix-web",
"anyhow", "anyhow",
"asn1", "asn1",

View File

@@ -23,7 +23,7 @@ reqwest = { version = "0.12.23", features = ["json"] }
serde_json = "1.0.145" serde_json = "1.0.145"
rand = "0.9.2" rand = "0.9.2"
actix = "0.13.5" actix = "0.13.5"
actix-identity = "0.8.0" actix-identity = "0.9.0"
actix-session = { version = "0.10.1", features = ["cookie-session"] } actix-session = { version = "0.10.1", features = ["cookie-session"] }
actix-cors = "0.7.1" actix-cors = "0.7.1"
actix-multipart = { version = "0.7.2", features = ["derive"] } actix-multipart = { version = "0.7.2", features = ["derive"] }