In general, I try to reduce dependencies unless they are really needed.
I understand that you wanted to use a "fast non-cryptographic hash" - but murmur-128 is SLOWER than keccak256 (probably it COULD be faster, but keccak is highly optimized, and already an existing dependency)
Hi @drortirosh yes it was the reason. I might also be able to get rid of it completely now as I think hardhat now generate a deterministic hash for the build info that I could reuse.
In general, I try to reduce dependencies unless they are really needed. I understand that you wanted to use a "fast non-cryptographic hash" - but murmur-128 is SLOWER than keccak256 (probably it COULD be faster, but keccak is highly optimized, and already an existing dependency)