You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The OG genanki has a(n admittedly strange & somewhat broken) hash algorithm implemented from scratch, which, as far as I can tell, solves one issue: Python hashes are salted, and so are not consistent between runs. Similarly, genanki-rs uses DefaultHasher, which is not guaranteed to have a consistent implementation between compiler versions. This makes the implementation of guid_for in genank-rs unstable for repeated builds.
The text was updated successfully, but these errors were encountered:
The OG
genanki
has a(n admittedly strange & somewhat broken) hash algorithm implemented from scratch, which, as far as I can tell, solves one issue: Python hashes are salted, and so are not consistent between runs. Similarly,genanki-rs
uses DefaultHasher, which is not guaranteed to have a consistent implementation between compiler versions. This makes the implementation ofguid_for
ingenank-rs
unstable for repeated builds.The text was updated successfully, but these errors were encountered: