Turbopack: add Xxh3Hash128Hasher (#90584)
- turbo-persistence used XxHash64, which is supposed to be slower than XxHash3_64
- refactor debug_id computation to just use `rope.content_hash()` which was added in the meantime
- update and adjust feature flags of `twox_hash`
https://github.com/Cyan4973/xxHash says:
| Hash Name | Width | Bandwidth (GB/s) | Small Data Velocity | Quality | Comment |
| --------- | ----- | ---------------- | ----- | --- | --- |
| __XXH3__ (SSE2) | 64 | 31.5 GB/s | 133.1 | 10
| __XXH128__ (SSE2) | 128 | 29.6 GB/s | 118.1 | 10
| __XXH64__ | 64 | 19.4 GB/s | 71.0 | 10
| __XXH32__ | 32 | 9.7 GB/s | 71.9 | 10