1 Commits

Author SHA1 Message Date
98a8c79987 Update Rust crate bcrypt to 0.19.0
All checks were successful
continuous-integration/drone/push Build is passing
2026-03-05 00:15:30 +00:00
2 changed files with 11 additions and 11 deletions

View File

@@ -36,9 +36,9 @@ dependencies = [
[[package]]
name = "actix-http"
version = "3.12.0"
version = "3.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f860ee6746d0c5b682147b2f7f8ef036d4f92fe518251a3a35ffa3650eafdf0e"
checksum = "7926860314cbe2fb5d1f13731e387ab43bd32bca224e82e6e2db85de0a3dba49"
dependencies = [
"actix-codec",
"actix-rt",
@@ -134,9 +134,9 @@ dependencies = [
[[package]]
name = "actix-router"
version = "0.5.4"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14f8c75c51892f18d9c46150c5ac7beb81c95f78c8b83a634d49f4ca32551fe7"
checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
dependencies = [
"bytestring",
"cfg-if",
@@ -196,9 +196,9 @@ dependencies = [
[[package]]
name = "actix-web"
version = "4.13.0"
version = "4.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff87453bc3b56e9b2b23c1cc0b1be8797184accf51d2abe0f8a33ec275d316bf"
checksum = "1654a77ba142e37f049637a3e5685f864514af11fcbc51cb51eb6596afe5b8d6"
dependencies = [
"actix-codec",
"actix-http",
@@ -576,13 +576,13 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
[[package]]
name = "bcrypt"
version = "0.18.0"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a0f5948f30df5f43ac29d310b7476793be97c50787e6ef4a63d960a0d0be827"
checksum = "523ab528ce3a7ada6597f8ccf5bd8d85ebe26d5edf311cad4d1d3cfb2d357ac6"
dependencies = [
"base64",
"blowfish",
"getrandom 0.3.2",
"getrandom 0.4.1",
"subtle",
"zeroize",
]

View File

@@ -12,7 +12,7 @@ clap = { version = "4.5.60", features = ["derive", "env"] }
lazy_static = "1.5.0"
lazy-regex = "3.5.1"
anyhow = "1.0.102"
actix-web = "4.13.0"
actix-web = "4.12.1"
actix-cors = "0.7.1"
actix-multipart = "0.7.2"
actix-remote-ip = "0.1.0"
@@ -25,7 +25,7 @@ mailchecker = "6.0.19"
redis = "0.32.7"
lettre = "0.11.19"
rand = "0.10.0"
bcrypt = "0.18.0"
bcrypt = "0.19.0"
light-openid = "1.1.0"
thiserror = "2.0.18"
serde_with = "3.14.0"