Several crates include incompatible updates that require corresponding code changes: - `crc-fast` (https://github.com/uutils/coreutils/pull/9961): requires an MSRV bump to Rust 1.89 - `md-5` (https://github.com/uutils/coreutils/pull/11529): includes breaking changes - `sha1` (https://github.com/uutils/coreutils/pull/11530): includes breaking changes - `sha2` (https://github.com/uutils/coreutils/pull/11492): includes breaking changes - `sha3` (https://github.com/uutils/coreutils/pull/11603): includes breaking changes All of these depend on the [`digest`](https://crates.io/crates/digest) crate. Upgrading them would allow us to eliminate the duplicate `digest` v0.10 dependency.
Several crates include incompatible updates that require corresponding code changes:
crc-fast(chore(deps): update rust crate crc-fast to v1.10.0 #9961): requires an MSRV bump to Rust 1.89md-5(chore(deps): update rust crate md-5 to 0.11.0 #11529): includes breaking changessha1(chore(deps): update rust crate sha1 to 0.11.0 #11530): includes breaking changessha2(chore(deps): update rust crate sha2 to 0.11.0 #11492): includes breaking changessha3(chore(deps): update rust crate sha3 to 0.12.0 #11603): includes breaking changesAll of these depend on the
digestcrate. Upgrading them would allow us to eliminate the duplicatedigestv0.10 dependency.