Consider the improvements regarding support for SHA-256 in Git, last mentioned in the release notes for version 2.45:
libgit2 has experimental support for SHA-256, guarded by -DEXPERIMENTAL_SHA256.
There is a reference to this in git2-rs:
|
// SHA256 is still experimental so we are not going to enable it. |
It might be useful to allow users explore SHA-256 compatibility with git2-rs, probably behind a feature flag.
Consider the improvements regarding support for SHA-256 in Git, last mentioned in the release notes for version 2.45:
libgit2 has experimental support for SHA-256, guarded by
-DEXPERIMENTAL_SHA256.There is a reference to this in git2-rs:
git2-rs/libgit2-sys/lib.rs
Line 1174 in abbd64e
It might be useful to allow users explore SHA-256 compatibility with git2-rs, probably behind a feature flag.