deps: update Cargo.lock after removing crc32fast dependency
Update Cargo.lock to reflect removal of unused crc32fast dependency.
The lock file now only contains references to packages that are actually used in the project,
eliminating the stale crc32fast entries that were causing the CI formatting issues.
5ba01a9
6 days ago
by naoNao89
+0.03%
fix: restore Cargo.lock from upstream to resolve duplicate hashbrown dependency
The Cargo.lock was regenerated when removing crc32fast, which caused
Cargo to upgrade indexmap from 2.9.0 to 2.12.0. This new version of
indexmap requires hashbrown 0.16.0, while lru 0.12.5 (pulled in by
num-prime) still requires hashbrown 0.15.5, creating a duplicate
dependency conflict.
By restoring the Cargo.lock from upstream/main, we maintain compatibility
with the existing dependency tree while still having the crc32fast
dependency removed from Cargo.toml.
7718b50
2 hours ago
by naoNao89
+12.04%
deps: update fuzz/Cargo.lock to latest compatible versions