From 12e6e8a977513d5b1b4d42991d62d1eaac6a4ddd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Sep 2026 14:07:04 -0700 Subject: [PATCH] chore(deps): bump sha1 from 0.10.6 to 0.11.0 (#674) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 52 ++++++++++++++++++++++++++++--------- crates/yaak-sync/Cargo.toml | 2 +- 2 files changed, 41 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 55973150..cfb450cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1358,6 +1358,12 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "const-oid" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" + [[package]] name = "const-random" version = "0.1.18" @@ -1998,6 +2004,17 @@ dependencies = [ "subtle", ] +[[package]] +name = "digest" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" +dependencies = [ + "block-buffer 0.12.1", + "const-oid", + "crypto-common 0.2.2", +] + [[package]] name = "dioxus-debug-cell" version = "0.1.1" @@ -3240,7 +3257,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" dependencies = [ - "digest", + "digest 0.10.7", ] [[package]] @@ -5751,7 +5768,7 @@ dependencies = [ "rustc-hash 2.1.1", "serde", "serde_json", - "sha1", + "sha1 0.10.7", ] [[package]] @@ -5807,7 +5824,7 @@ dependencies = [ "hmac", "lazy_static 1.5.0", "rc2", - "sha1", + "sha1 0.10.7", "yasna", ] @@ -5893,7 +5910,7 @@ version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" dependencies = [ - "digest", + "digest 0.10.7", "hmac", ] @@ -8070,13 +8087,24 @@ dependencies = [ [[package]] name = "sha1" -version = "0.10.6" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8" dependencies = [ "cfg-if", "cpufeatures 0.2.17", - "digest", + "digest 0.10.7", +] + +[[package]] +name = "sha1" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.1", + "digest 0.11.3", ] [[package]] @@ -8093,7 +8121,7 @@ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ "cfg-if", "cpufeatures 0.2.17", - "digest", + "digest 0.10.7", ] [[package]] @@ -9780,7 +9808,7 @@ dependencies = [ "rand 0.9.5", "rustls", "rustls-pki-types", - "sha1", + "sha1 0.10.7", "thiserror 2.0.20", "utf-8", ] @@ -11728,7 +11756,7 @@ dependencies = [ "serde_json", "serde_path_to_error", "serde_yaml", - "sha1", + "sha1 0.11.0", "thiserror 2.0.20", "tokio", "ts-rs", @@ -12080,7 +12108,7 @@ dependencies = [ "memchr", "pbkdf2", "ppmd-rust", - "sha1", + "sha1 0.10.7", "time", "zeroize", "zopfli", @@ -12108,7 +12136,7 @@ dependencies = [ "memchr", "pbkdf2", "ppmd-rust", - "sha1", + "sha1 0.10.7", "time", "zeroize", "zopfli", diff --git a/crates/yaak-sync/Cargo.toml b/crates/yaak-sync/Cargo.toml index cd4f7f9d..c2c72180 100644 --- a/crates/yaak-sync/Cargo.toml +++ b/crates/yaak-sync/Cargo.toml @@ -12,7 +12,7 @@ notify = "8.0.0" serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } serde_yaml = "0.9.34" -sha1 = "0.10.6" +sha1 = "0.11.0" thiserror = { workspace = true } tokio = { workspace = true, features = ["fs", "sync", "macros", "rt"] } ts-rs = { workspace = true, features = ["chrono-impl", "serde-json-impl"] }