Skip to main content

max / balanced_breakfast

Upgrade sha2 to 0.11 No source change needed: the digest never goes through the LowerHex impl 0.11 drops. aes-gcm stays on 0.10 for now; that bump is its own task. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-07-22 00:37 UTC
Commit: 48c21e3d9fbcbc41a2e61dc5d84a1667324de97c
Parent: db205df
2 files changed, +11 insertions, -3 deletions
M Cargo.lock +10 -2
@@ -352,7 +352,7 @@ dependencies = [
352 352 "roxmltree",
353 353 "serde",
354 354 "serde_json",
355 - "sha2 0.10.9",
355 + "sha2 0.11.0",
356 356 "sqlx",
357 357 "supernote-push",
358 358 "synckit-client",
@@ -807,6 +807,12 @@ dependencies = [
807 807 ]
808 808
809 809 [[package]]
810 + name = "const-oid"
811 + version = "0.10.2"
812 + source = "registry+https://github.com/rust-lang/crates.io-index"
813 + checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
814 +
815 + [[package]]
810 816 name = "const-random"
811 817 version = "0.1.18"
812 818 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1208,6 +1214,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1208 1214 checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
1209 1215 dependencies = [
1210 1216 "block-buffer 0.12.1",
1217 + "const-oid",
1211 1218 "crypto-common 0.2.2",
1212 1219 "ctutils",
1213 1220 ]
@@ -5595,6 +5602,7 @@ dependencies = [
5595 5602 "bytes",
5596 5603 "chacha20poly1305",
5597 5604 "chrono",
5605 + "hex",
5598 5606 "keyring",
5599 5607 "parking_lot",
5600 5608 "rand 0.10.2",
@@ -5602,7 +5610,7 @@ dependencies = [
5602 5610 "rusqlite",
5603 5611 "serde",
5604 5612 "serde_json",
5605 - "sha2 0.10.9",
5613 + "sha2 0.11.0",
5606 5614 "thiserror 2.0.18",
5607 5615 "tokio",
5608 5616 "tokio-stream",
@@ -49,7 +49,7 @@ uuid.workspace = true
49 49
50 50 # Cloud sync
51 51 synckit-client.workspace = true
52 - sha2 = "0.10"
52 + sha2 = "0.11"
53 53 base64.workspace = true
54 54 rand.workspace = true
55 55