Update Rust crate reqwest to 0.12.24
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-10-27 00:42:22 +00:00
parent af83130b63
commit bcc92da065
2 changed files with 22 additions and 5 deletions

View File

@@ -106,7 +106,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b8ddc6f6a8b19c4016aaa13519968da9969bc3bc1c1c883cdb0f25dd6c8cf7" checksum = "23b8ddc6f6a8b19c4016aaa13519968da9969bc3bc1c1c883cdb0f25dd6c8cf7"
dependencies = [ dependencies = [
"actix-service", "actix-service",
"actix-session", "actix-session 0.10.1",
"actix-utils", "actix-utils",
"actix-web", "actix-web",
"derive_more 1.0.0", "derive_more 1.0.0",
@@ -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.11.0",
"actix-web", "actix-web",
"anyhow", "anyhow",
"asn1", "asn1",
@@ -2412,9 +2429,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
[[package]] [[package]]
name = "reqwest" name = "reqwest"
version = "0.12.23" version = "0.12.24"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb" checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
dependencies = [ dependencies = [
"base64 0.22.1", "base64 0.22.1",
"bytes", "bytes",

View File

@@ -19,7 +19,7 @@ asn1 = "0.22.0"
actix-web = { version = "4.11.0", features = ["openssl"] } actix-web = { version = "4.11.0", features = ["openssl"] }
futures = "0.3.31" futures = "0.3.31"
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
reqwest = { version = "0.12.23", features = ["json"] } reqwest = { version = "0.12.24", 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"