1 Commits

Author SHA1 Message Date
e94a4b8892 Update Rust crate digest to 0.11.0
Some checks failed
continuous-integration/drone/push Build is failing
2026-02-14 00:24:39 +00:00
2 changed files with 15 additions and 15 deletions

26
Cargo.lock generated
View File

@@ -620,7 +620,7 @@ dependencies = [
"build-time", "build-time",
"chrono", "chrono",
"clap", "clap",
"digest 0.11.0-rc.11", "digest 0.11.0",
"env_logger", "env_logger",
"hex", "hex",
"httpdate", "httpdate",
@@ -638,7 +638,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"serde_yaml", "serde_yaml",
"sha2 0.11.0-rc.5", "sha2 0.11.0-rc.4",
"totp_rfc6238", "totp_rfc6238",
"url", "url",
"urlencoding", "urlencoding",
@@ -862,7 +862,7 @@ version = "0.5.0-rc.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167" checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167"
dependencies = [ dependencies = [
"crypto-common 0.2.0-rc.15", "crypto-common 0.2.0",
"inout 0.2.2", "inout 0.2.2",
] ]
@@ -1062,9 +1062,9 @@ dependencies = [
[[package]] [[package]]
name = "crypto-common" name = "crypto-common"
version = "0.2.0-rc.15" version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f8441110cea75afde0b89a8d796e2bc67b23432f5a9566cb15d9d365d91a2b0" checksum = "211f05e03c7d03754740fd9e585de910a095d6b99f8bcfffdef8319fa02a8331"
dependencies = [ dependencies = [
"hybrid-array", "hybrid-array",
] ]
@@ -1161,13 +1161,13 @@ dependencies = [
[[package]] [[package]]
name = "digest" name = "digest"
version = "0.11.0-rc.11" version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02b42f1d9edf5207c137646b568a0168ca0ec25b7f9eaf7f9961da51a3d91cea" checksum = "f8bf3682cdec91817be507e4aa104314898b95b84d74f3d43882210101a545b6"
dependencies = [ dependencies = [
"block-buffer 0.11.0", "block-buffer 0.11.0",
"const-oid 0.10.1", "const-oid 0.10.1",
"crypto-common 0.2.0-rc.15", "crypto-common 0.2.0",
] ]
[[package]] [[package]]
@@ -1648,9 +1648,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
[[package]] [[package]]
name = "hybrid-array" name = "hybrid-array"
version = "0.4.5" version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f471e0a81b2f90ffc0cb2f951ae04da57de8baa46fa99112b062a5173a5088d0" checksum = "e1b229d73f5803b562cc26e4da0396c8610a4ee209f4fac8fa4f8d709166dc45"
dependencies = [ dependencies = [
"typenum", "typenum",
] ]
@@ -3153,13 +3153,13 @@ dependencies = [
[[package]] [[package]]
name = "sha2" name = "sha2"
version = "0.11.0-rc.5" version = "0.11.0-rc.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c5f3b1e2dc8aad28310d8410bd4d7e180eca65fca176c52ab00d364475d0024" checksum = "7535f94fa3339fe9e5e9be6260a909e62af97f6e14b32345ccf79b92b8b81233"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"cpufeatures", "cpufeatures",
"digest 0.11.0-rc.11", "digest 0.11.0",
] ]
[[package]] [[package]]

View File

@@ -26,8 +26,8 @@ urlencoding = "2.1.3"
rand = "0.9.0" rand = "0.9.0"
base64 = "0.22.1" base64 = "0.22.1"
jwt-simple = { version = "0.12.14", default-features = false, features = ["pure-rust"] } jwt-simple = { version = "0.12.14", default-features = false, features = ["pure-rust"] }
digest = "0.11.0-rc.11" digest = "0.11.0"
sha2 = "0.11.0-rc.5" sha2 = "0.11.0-rc.4"
lazy-regex = "3.5.1" lazy-regex = "3.5.1"
totp_rfc6238 = "0.6.1" totp_rfc6238 = "0.6.1"
base32 = "0.5.1" base32 = "0.5.1"