generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
As noted in the comment, this changes the url kind from `u64` -> `usize` to match cargo, which unfortunately uses the default `derive(Hash)` which for enums uses `::core::intrinsics::discriminant_value` which for non-repr enums is...pointer size. This means the hash computed is different between 32 and 64-bit targets when they could easily be the same. :( Resolves: EmbarkStudios/cargo-deny#540 (comment)
- Loading branch information
1 parent
b964b2c
commit bf367b8
Showing
3 changed files
with
35 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters