Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 40 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ hex = "0.4.3"
thiserror = "2.0.18"
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
sha1 = "0.10.6"
sha1 = "0.11.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P0 Badge Keep SHA crates on the same digest major

Bumping sha1 to 0.11.0 pulls in digest 0.11, but this crate still uses sha2 0.10 (which is on digest 0.10), and multiple modules rely on a single Digest import from sha1 while calling sha2::Sha256 methods (for example src/hash.rs, src/utils.rs, and src/internal/pack/wrapper.rs). With mixed digest majors, those Sha256::new/update/finalize/digest calls no longer have the required trait in scope, so the crate fails to compile in all build contexts until the hash crates are kept on compatible digest versions or imports are split accordingly.

Useful? React with 👍 / 👎.

colored = "3.1.1"
threadpool = "1.8.1"
num_cpus = "1.17.0"
Expand Down
Loading