Use prerelease version of srp to avoid using my fork

This commit is contained in:
nab138
2026-02-04 13:15:31 -05:00
parent 2f01d80a39
commit 7ed69b3e71
3 changed files with 415 additions and 163 deletions

View File

@@ -24,7 +24,7 @@ async-trait = "0.1.89"
serde = "1.0.228"
rand = "0.9.2"
uuid = {version = "1.20.0", features = ["v4"] }
sha2 = "0.10.9"
sha2 = "0.11.0-rc.4"
tracing = "0.1.44"
tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-webpki-roots"] }
rootcause = "0.11.1"
@@ -32,10 +32,10 @@ futures-util = "0.3.31"
serde_json = "1.0.149"
base64 = "0.22.1"
hex = "0.4.3"
srp = { package = "nab138_srp", version = "0.6.0" }
pbkdf2 = "0.12.2"
hmac = "0.12.1"
cbc = { version = "0.1.2", features = ["std"] }
aes = "0.8.4"
aes-gcm = "0.10.3"
srp = "0.7.0-rc.1"
pbkdf2 = "0.13.0-rc.9"
hmac = "0.13.0-rc.5"
cbc = { version = "0.2.0-rc.3", features = ["alloc"] }
aes = "0.9.0-rc.4"
aes-gcm = "0.11.0-rc.3"
tokio = "1.49.0"